diff --git a/metaflow/user_configs/config_parameters.py b/metaflow/user_configs/config_parameters.py index 1eb295edb9..062e29e8f5 100644 --- a/metaflow/user_configs/config_parameters.py +++ b/metaflow/user_configs/config_parameters.py @@ -70,10 +70,6 @@ class ConfigValue(collections.abc.Mapping): # as well as a [] notation. def __init__(self, data: Dict[str, Any]): - if any(not ID_PATTERN.match(k) for k in data.keys()): - raise MetaflowException( - "All keys in the configuration must be valid Python identifiers" - ) self._data = data def __getattr__(self, key: str) -> Any: