fix: ignore empty commands in prompt function
Some checks are pending
Docker Image CI / build (push) Waiting to run

This commit is contained in:
patilk 2024-11-14 18:51:15 +01:00
parent f5e56fa6e0
commit cc79bb9d9d
Signed by: s500042
GPG Key ID: 1921AD722E7392EE

View File

@ -61,6 +61,8 @@ def prompt():
).stdout.decode()
)
continue
if command == "":
continue
else:
print("Command not found. Write 'h' for help.")
continue