We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c90017e commit 7141beeCopy full SHA for 7141bee
1 file changed
app/backend/src/couchers/i18n/context.py
@@ -50,7 +50,7 @@ def __setattr__(self, name: str, value: Any) -> None:
50
# of our attributes are derived from others, so we can't use the default initializer.
51
if hasattr(self, "babel_locale"):
52
raise FrozenInstanceError(f"Cannot modify attribute {name}.")
53
- return setattr(self, name, value)
+ return object.__setattr__(self, name, value)
54
55
@property
56
def localized_timezone(self) -> str:
0 commit comments