diff options
-rwxr-xr-x | test_task.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test_task.py b/test_task.py index a074a13..ac44201 100755 --- a/test_task.py +++ b/test_task.py @@ -52,8 +52,7 @@ def get_params(params, params_meta, language=None): s = getpass.getpass('{}: '.format(description)) else: s = rlinput('{}: '.format(description), params.get(name, '')) - if s: - params[name] = s + params[name] = s except EOFError: print() else: |