You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Bug Report\n\nWhen a TOML config file has empty string values, the config parser crashes with a TypeError.\n\ntoml\n[acme]\napi_key = ""\nendpoint = "https://ingest.acme-sdk.dev"\n\n\n\nTypeError: cannot parse '' as float\n\n\nThe issue is in _interpolate_env_vars — it tries to type-cast empty strings.
Bug Report\n\nWhen a TOML config file has empty string values, the config parser crashes with a TypeError.\n\n
toml\n[acme]\napi_key = ""\nendpoint = "https://ingest.acme-sdk.dev"\n\n\n\nTypeError: cannot parse '' as float\n\n\nThe issue is in_interpolate_env_vars— it tries to type-cast empty strings.