Skip to content

Commit 76dd94b

Browse files
committed
remove Dutch comment
1 parent 4056ae1 commit 76dd94b

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

eessi_software_reproduce_stack.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -201,8 +201,7 @@ def inner_loop(software_name):
201201

202202
# Each worker in the pool creates its own software info dict. The result of the map function is a list of these dicts
203203
# Here, we merge all these dicts into one. Note that we know the keys to be unique, so no risk of clashes
204-
205-
software_info = {k: v for d in software_info_list if d for k, v in d.items()} # laatste dict bepaalt de waarde
204+
software_info = {k: v for d in software_info_list if d for k, v in d.items()}
206205
print(f"Gathered information for {len(software_info)} software installations (including versions) in {root_dir}")
207206
if args.debug:
208207
import pprint

0 commit comments

Comments
 (0)