Skip to content

Commit 01648ff

Browse files
committed
Fix double await in kobra.py
1 parent 884182a commit 01648ff

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • files/4-apps/home/rinkhals/apps/40-moonraker

files/4-apps/home/rinkhals/apps/40-moonraker/kobra.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -578,7 +578,7 @@ async def handle_gcode(me, script, delegate_run_gcode: Callable[[], Coroutine]):
578578
if result is None:
579579
return None
580580

581-
return await result
581+
return result
582582
else:
583583
logging.debug(f"hook on gcode cmd not found: {cmd}")
584584
return await delegate_run_gcode()

0 commit comments

Comments
 (0)