From 2431d8538625da97b07571c61f0d0dd29c5d880a Mon Sep 17 00:00:00 2001 From: Alexander Kabui Date: Tue, 8 Jun 2021 03:48:04 +0300 Subject: pep8 formatting --- tests/performance/test_query.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/performance/test_query.py b/tests/performance/test_query.py index 222e8d6..2d05d26 100644 --- a/tests/performance/test_query.py +++ b/tests/performance/test_query.py @@ -31,7 +31,7 @@ def query_executor(query: str, fetch_all: bool = True): """function to execute a query""" conn, _ = database_connector() - print(f"Performance tests for {dataset_name}") + print(f"Performance test for {dataset_name}") with conn: cursor = conn.cursor() @@ -122,5 +122,5 @@ def fetch_cmd_args(): if __name__ == '__main__': func_list = fetch_cmd_args() - for func in func_list: - func() + for func_obj in func_list: + func_obj() -- cgit v1.2.3