Skip to content

Commit f9f6b33

Browse files
committed
Use list
1 parent 5748fa3 commit f9f6b33

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

mrq/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -445,7 +445,7 @@ def get_config(
445445
# Merge the config in the order given by the user
446446
merged_config = default_config
447447

448-
config_keys = set(default_config.keys() + from_file.keys())
448+
config_keys = set(list(default_config.keys()) + list(from_file.keys()))
449449

450450
for part in sources:
451451
for name in config_keys:

0 commit comments

Comments
 (0)