From d7f892672e24e0f14628b16ea4d2332020e79374 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Jan=C3=9Fen?= Date: Sun, 16 Jul 2023 11:17:55 -0600 Subject: [PATCH] black formatting --- pysqa/executor/backend.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pysqa/executor/backend.py b/pysqa/executor/backend.py index cffaf8b..9d47cef 100644 --- a/pysqa/executor/backend.py +++ b/pysqa/executor/backend.py @@ -16,9 +16,9 @@ def execute_files_from_list(tasks_in_progress_dict, cache_directory, executor): key = file_name_in.split(".in.pl")[0] file_name_out = key + ".out.pl" if ( - file_name_in.endswith(".in.pl") - and file_name_out not in file_lst - and file_name_out not in tasks_in_progress_dict.keys() + file_name_in.endswith(".in.pl") + and file_name_out not in file_lst + and file_name_out not in tasks_in_progress_dict.keys() ): funct_dict = read_from_file( file_name=os.path.join(cache_directory, file_name_in) @@ -53,7 +53,7 @@ def execute_tasks(cores, cache_directory): execute_files_from_list( tasks_in_progress_dict=tasks_in_progress_dict, cache_directory=cache_directory, - executor=exe + executor=exe, )