sleep to float convert

This commit is contained in:
2025-06-24 23:13:54 +02:00
parent b878f05b5c
commit 21508b1124
+1 -1
View File
@@ -269,7 +269,7 @@ def _register_commands_with_controller_state(controller_state, cli):
""" """
sleep - waits specified amount of seconds sleep - waits specified amount of seconds
""" """
await asyncio.sleep(args[0]) await asyncio.sleep(float(args[0]))
cli.add_command(sleep.__name__, sleep) cli.add_command(sleep.__name__, sleep)