Skip to content

Commit

Permalink
Refractored code according to PEP8 (pylint)
Browse files Browse the repository at this point in the history
  • Loading branch information
TatjanaUtz committed Apr 2, 2019
1 parent 3611b40 commit 4805b72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion benchmark.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def benchmark_execution_times(database):
logger.info("Starting to benchmark execution times...")
start_time = time.time()

task_list = database.read_table_task(dict=False) # read table 'Task'
task_list = database.read_table_task(convert_to_task_dict=False) # read table 'Task'
c_dict = dict() # create empty dictionary for execution times

for task in task_list: # iterate over all tasks
Expand Down

0 comments on commit 4805b72

Please sign in to comment.