Skip to content

Commit

Permalink
black formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
jan-janssen committed Jul 16, 2023
1 parent 83e456b commit d7f8926
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pysqa/executor/backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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,
)


Expand Down

0 comments on commit d7f8926

Please sign in to comment.