We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1df52d commit 40c832eCopy full SHA for 40c832e
src/pdl/pdl.py
@@ -238,7 +238,7 @@ def main():
238
initial_scope = {"pdl_model_default_parameters": get_default_model_parameters()}
239
if args.data_file is not None:
240
with open(args.data_file, "r", encoding="utf-8") as scope_fp:
241
- initial_scope = yaml.safe_load(scope_fp)
+ initial_scope = initial_scope | yaml.safe_load(scope_fp)
242
if args.data is not None:
243
initial_scope = initial_scope | yaml.safe_load(args.data)
244
validate_scope(initial_scope)
0 commit comments