Bugfixes for run service

This commit is contained in:
Sven Heidemann 2022-05-25 16:06:44 +02:00
parent 036a553f64
commit 539ed13be4
1 changed files with 1 additions and 5 deletions

View File

@ -86,11 +86,7 @@ class RunService(CommandABC):
:param args:
:return:
"""
if len(args) > 1:
Error.error(f'Unexpected argument(s): {", ".join(args)}')
sys.exit()
if len(args) == 1:
if len(args) >= 1:
self._set_project_by_args(args[0])
args.remove(args[0])