From 3982f39424ea037aca1086d45c6f657b4bfc457c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=B2=98r=E1=B9=A8h=E0=B8=AA=E2=88=82ow?= <71973368+MrShadowDev@users.noreply.github.com> Date: Mon, 23 Oct 2023 09:46:25 +0200 Subject: 'Refactored by Sourcery' (#1125) Co-authored-by: Sourcery AI <> --- etc/testing/log_time.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'etc/testing/log_time.py') 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 -- cgit v1.2.3