From 991f57279192680cdf19d4be98419aa81f8e5c6f Mon Sep 17 00:00:00 2001 From: "an.tsouchlos" Date: Fri, 11 Jul 2025 18:05:55 +0000 Subject: [PATCH] Update python/state-cli.md --- python/state-cli.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/python/state-cli.md b/python/state-cli.md index ac6bb59..283795e 100644 --- a/python/state-cli.md +++ b/python/state-cli.md @@ -73,6 +73,9 @@ class StateCli: ) parts = user_input.split() + if len(parts) == 0: + continue + command, args = parts[0], parts[1:] if command == "help":