Skip to content

Commit

Permalink
Fix typos in MultipleReadPropertyThreaded (#424)
Browse files Browse the repository at this point in the history
  • Loading branch information
cambrian-dk authored Sep 1, 2021
1 parent 9fca3f6 commit 529831c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions samples/MultipleReadPropertyThreaded.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
from bacpypes.object import get_datatype

from bacpypes.apdu import ReadPropertyRequest
from bacpypes.primitivedata import Unsigned
from bacpypes.primitivedata import Unsigned, ObjectIdentifier
from bacpypes.constructeddata import Array

from bacpypes.app import BIPSimpleApplication
Expand Down Expand Up @@ -64,7 +64,7 @@ def run(self):
for addr, obj_id, prop_id in self.point_queue:
# build a request
request = ReadPropertyRequest(
objectIdentifier=ObjectIdentifer(obj_id).value,
objectIdentifier=ObjectIdentifier(obj_id).value,
propertyIdentifier=prop_id,
)
request.pduDestination = Address(addr)
Expand Down

0 comments on commit 529831c

Please sign in to comment.