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
All over the codebase we write config.get("thing", default_val) We ideally should have some place where all the defaults live, so there is a central location to find the default. We would also remove all the at-access defaulting in this process, so there's a single authoritative source.
Might use DataClasses, Pydantic, lazyconfig, etc...
The text was updated successfully, but these errors were encountered:
All over the codebase we write
config.get("thing", default_val)
We ideally should have some place where all the defaults live, so there is a central location to find the default. We would also remove all the at-access defaulting in this process, so there's a single authoritative source.Might use DataClasses, Pydantic, lazyconfig, etc...
The text was updated successfully, but these errors were encountered: