Skip to content

Commit 2616f12

Browse files
author
Mariusz Kryński
committed
fix typo
1 parent 95daae2 commit 2616f12

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)