Skip to content

Commit e6ce8f6

Browse files
authored
Merge pull request #3 from mrk-its/fix-typo
fix typo
2 parents 95daae2 + 2616f12 commit e6ce8f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

canopen/pdo/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ async def aon_message(self, can_id, data, timestamp):
335335
self.areceive_condition.notify_all()
336336
for callback in self.callbacks:
337337
res = callback(self)
338-
if res is not None and asyncio.iscouroutine(res):
338+
if res is not None and asyncio.iscoroutine(res):
339339
await res
340340

341341
def add_callback(self, callback: Callable[["Map"], None]) -> None:

0 commit comments

Comments
 (0)