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
@environ.config
class MyGroup:
my_special_value1 = environ.var()
my_special_value2 = environ.var()
@environ.config(prefix="")
class AppSettings:
group = environ.group(MyGroup)
I want to do this:
But I want my environment variables to be:
I don't want:
Is there an option I can pass to the
environ.group()
function to achieve this?The text was updated successfully, but these errors were encountered: