summaryrefslogtreecommitdiffstats
path: root/etc/testing/log_time.py
diff options
context:
space:
mode:
Diffstat (limited to 'etc/testing/log_time.py')
-rw-r--r--etc/testing/log_time.py8
1 files changed, 2 insertions, 6 deletions
diff --git a/etc/testing/log_time.py b/etc/testing/log_time.py
index 376ab86d..79997a61 100644
--- a/etc/testing/log_time.py
+++ b/etc/testing/log_time.py
@@ -5,9 +5,7 @@ async def log_time_async(method: callable, **kwargs):
start = time()
result = await method(**kwargs)
secs = f"{round(time() - start, 2)} secs"
- if result:
- return " ".join([result, secs])
- return secs
+ return " ".join([result, secs]) if result else secs
def log_time_yield(method: callable, **kwargs):
@@ -20,6 +18,4 @@ def log_time(method: callable, **kwargs):
start = time()
result = method(**kwargs)
secs = f"{round(time() - start, 2)} secs"
- if result:
- return " ".join([result, secs])
- return secs \ No newline at end of file
+ return " ".join([result, secs]) if result else secs \ No newline at end of file