Skip to content

Commit

Permalink
None configs are now None
Browse files Browse the repository at this point in the history
  • Loading branch information
romain-intel committed Dec 20, 2024
1 parent 7d07fdf commit 49383ea
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions metaflow/user_configs/config_parameters.py
Original file line number Diff line number Diff line change
Expand Up @@ -337,6 +337,8 @@ def __init__(
self._computed_value = None

def load_parameter(self, v):
if v is None:
return None
return ConfigValue(v)

def _store_value(self, v: Any) -> None:
Expand Down

0 comments on commit 49383ea

Please sign in to comment.