Skip to content

Commit

Permalink
fixed wrong arg
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Rodgers committed Nov 21, 2023
1 parent 19202d3 commit 51edd33
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions scripts/bacnet/bbmd_get_priority_array.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,12 +163,10 @@ def main():
maxApduLengthAccepted=int(args.ini.maxapdulengthaccepted),
segmentationSupported=args.ini.segmentationsupported,
vendorIdentifier=int(args.ini.vendoridentifier),
bbmdAddress=Address(args.ini.bbmdaddress),
bbmdTTL=int(args.ini.foreignttl)
)

# make a simple application
this_application = ReadPropertyApplication(this_device, args.ini.address)
this_application = ReadPropertyApplication(this_device, args.ini.address, Address(args.ini.foreignbbmd), int(args.ini.foreignttl))

# get the services supported
services_supported = this_application.get_services_supported()
Expand Down

0 comments on commit 51edd33

Please sign in to comment.