Skip to content

Commit

Permalink
Merge pull request #107 from LSSTDESC/issue/106/input_are_None
Browse files Browse the repository at this point in the history
Fix for having inputs set to 'None'
  • Loading branch information
joezuntz authored Jun 6, 2024
2 parents 1e42171 + db80e40 commit ae1dd52
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ceci/stage.py
Original file line number Diff line number Diff line change
Expand Up @@ -1200,6 +1200,8 @@ def get_config_dict(self, ignore=None, reduce_config=False):
continue
if key in ignore_keys:
continue
if key in self.input_tags() and val in [None, 'None']:
continue
out_dict[key] = cast_to_streamable(val)
return out_dict

Expand Down

0 comments on commit ae1dd52

Please sign in to comment.