SCDContext should be done

This commit is contained in:
Andrei Bondarenko 2021-07-19 09:08:10 +02:00
parent d7ba998cd7
commit 2e3576a1a8
4 changed files with 157 additions and 50 deletions

View file

@ -37,6 +37,9 @@ def input_args(method):
arg = input(f"{param_type} {param_name} (default = {param_default.value})? ")
if arg == '':
arg = param_default.value
arg = Element(value=arg)
args.append(arg)
continue
else:
param_name, param_type = param_tuple
while True: