diff --git a/sqlalchemy_jsonfield/jsonfield.py b/sqlalchemy_jsonfield/jsonfield.py index 1a9497a..dc2186d 100644 --- a/sqlalchemy_jsonfield/jsonfield.py +++ b/sqlalchemy_jsonfield/jsonfield.py @@ -78,7 +78,7 @@ def __init__( # pylint: disable=keyword-arg-before-vararg self.__enforce_unicode = enforce_unicode self.__json_codec = json self.__json_type = json_type - super(JSONField, self).__init__(*args, **kwargs) + super().__init__(*args, **kwargs) def __use_json(self, dialect: "DefaultDialect") -> bool: """Helper to determine, which encoder to use.