diff --git a/utils.py b/utils.py index 7c9c7a8..48b9033 100644 --- a/utils.py +++ b/utils.py @@ -595,6 +595,8 @@ class DeprecatedAttributesObject(): """ Object implementing deprecated attributes and warnings on access. """ + def __init__(self): + self.deprecated_attributes = {} def __getattribute__(self, attr): # Note: "self.deprecated_attributes" calls this too, so the != check is