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
If there is a setting that does not exist, settings_stub will gladly add it, but will not remove it.
withsettings_stub(SOME_SETTING_THAT_DOES_NOT_EXIST=1):
print(settings.SOME_SETTING_THAT_DOES_NOT_EXIST) # Prints 1print(settings.SOME_SETTING_THAT_DOES_NOT_EXIST) # Prints 1 instead of raising AttributeError
It ought to remove the setting if it did not exist originally.
The text was updated successfully, but these errors were encountered:
If there is a setting that does not exist,
settings_stub
will gladly add it, but will not remove it.It ought to remove the setting if it did not exist originally.
The text was updated successfully, but these errors were encountered: