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 cf31a38 commit 7248c2bCopy full SHA for 7248c2b
monai/bundle/workflows.py
@@ -282,7 +282,8 @@ def __init__(
282
self._set_props = {}
283
284
self.parser = ConfigParser()
285
- self.parser.read_config(f=config_file)
+ if config_file is not None:
286
+ self.parser.read_config(f=config_file)
287
if self.meta_file is not None:
288
self.parser.read_meta(f=self.meta_file)
289
0 commit comments