diff options
author | BonfaceKilz | 2021-04-30 13:05:21 +0300 |
---|---|---|
committer | BonfaceKilz | 2021-04-30 13:45:15 +0300 |
commit | 114e7d3395f28ddead0ff3a94c10d0bf534fb493 (patch) | |
tree | 39e2f8132a55b2a1a080a548e5bb463a3ac13f77 /wqflask/utility/tools.py | |
parent | 90ec57905c8afdbd5e9e8c44dcc369bd0e9c2d1b (diff) | |
download | genenetwork2-114e7d3395f28ddead0ff3a94c10d0bf534fb493.tar.gz |
autopep8: Fix E101, E11
Diffstat (limited to 'wqflask/utility/tools.py')
-rw-r--r-- | wqflask/utility/tools.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wqflask/utility/tools.py b/wqflask/utility/tools.py index d82e478d..4f09176a 100644 --- a/wqflask/utility/tools.py +++ b/wqflask/utility/tools.py @@ -73,7 +73,7 @@ def get_setting(command_id, guess=None): def get_setting_bool(id): v = get_setting(id) if v not in [0, False, 'False', 'FALSE', None]: - return True + return True return False |