diff options
author | BonfaceKilz | 2021-04-30 12:16:51 +0300 |
---|---|---|
committer | BonfaceKilz | 2021-04-30 13:45:15 +0300 |
commit | c7e661b8ff9f70955418fbc4527378904beb0cf4 (patch) | |
tree | 7a164b42d46e15b6f2775a50137b412c8713e2f3 /wqflask/utility/benchmark.py | |
parent | 385da724b63f57d0fb1bbe3476cea31ef837c081 (diff) | |
download | genenetwork2-c7e661b8ff9f70955418fbc4527378904beb0cf4.tar.gz |
autopep8: Fix E20-E27
Run:
python -m autopep8 --in-place --recrusive ./ --select\
E20,E211,E22,E224,E224,E225,E226,E227,E228,E231,E241,\
E242,E251,E252,E26,E265,E266,E27 -p 3
Diffstat (limited to 'wqflask/utility/benchmark.py')
-rw-r--r-- | wqflask/utility/benchmark.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wqflask/utility/benchmark.py b/wqflask/utility/benchmark.py index 91ea91e8..3d40a3b8 100644 --- a/wqflask/utility/benchmark.py +++ b/wqflask/utility/benchmark.py @@ -4,7 +4,7 @@ import time from utility.tools import LOG_BENCH from utility.logger import getLogger -logger = getLogger(__name__ ) +logger = getLogger(__name__) class Bench: entries = collections.OrderedDict() @@ -39,7 +39,7 @@ class Bench: total_time = sum((time_taken for time_taken in list(cls.entries.values()))) print("\nTiming report\n") for name, time_taken in list(cls.entries.items()): - percent = int(round((time_taken/total_time) * 100)) + percent = int(round((time_taken / total_time) * 100)) print("[{}%] {}: {}".format(percent, name, time_taken)) print() |