Skip to content

Commit 48c9005

Browse files
committed
apply review changes
1 parent 4941dc4 commit 48c9005

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/rapids_dependency_file_generator/rapids_dependency_file_generator.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,8 +112,8 @@ def should_use_specific_entry(matrix_combo, specific_entry_matrix):
112112
return True
113113

114114

115-
def main(config_file_path, files={}):
116-
with open(config_file_path, "r") as f:
115+
def main(config_file_path, files=None):
116+
with open(config_file_path) as f:
117117
parsed_config = yaml.load(f, Loader=yaml.FullLoader)
118118

119119
channels = parsed_config.get("channels", default_channels) or default_channels

0 commit comments

Comments
 (0)