From 21508b1124f1e52caeef787b28212fc790d38a09 Mon Sep 17 00:00:00 2001 From: Zjamnik Date: Tue, 24 Jun 2025 23:13:54 +0200 Subject: [PATCH] sleep to float convert --- run_controller_cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run_controller_cli.py b/run_controller_cli.py index 5d0b7ea..5e7cba4 100755 --- a/run_controller_cli.py +++ b/run_controller_cli.py @@ -269,7 +269,7 @@ def _register_commands_with_controller_state(controller_state, cli): """ sleep - waits specified amount of seconds """ - await asyncio.sleep(args[0]) + await asyncio.sleep(float(args[0])) cli.add_command(sleep.__name__, sleep)