Skip to content

Commit

Permalink
py3 style for super() call
Browse files Browse the repository at this point in the history
  • Loading branch information
penguinolog committed Dec 11, 2020
1 parent dc81fd4 commit 552bc52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sqlalchemy_jsonfield/jsonfield.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 552bc52

Please sign in to comment.