Skip to content

Commit

Permalink
Fixed missing Interface attribute required by BACnet COV.
Browse files Browse the repository at this point in the history
  • Loading branch information
davidraker committed Dec 2, 2024
1 parent a9419c6 commit 8a30581
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -237,12 +237,12 @@ class BaseInterface(object, metaclass=abc.ABCMeta):
"""

def __init__(self, vip=None, core=None, **kwargs):
def __init__(self, vip=None, core=None, device_path=None, **kwargs):
# Object does not take any arguments to the init.
super(BaseInterface, self).__init__()
self.vip = vip
self.core = core

self.device_path = device_path
self.point_map = {}

self.build_register_map()
Expand Down

0 comments on commit 8a30581

Please sign in to comment.