Skip to content

Commit

Permalink
build: adding python3.12 support.
Browse files Browse the repository at this point in the history
  • Loading branch information
awais786 committed Mar 29, 2024
1 parent aa7493e commit 8e71efa
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion submissions/errors.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,8 @@ def __repr__(self):
Show the field errors upon output.
"""
return (
f'{self.__class__.__name__}(msg="{self.message}", field_errors={self.field_errors})' # pylint: disable=no-member;line-too-long
# pylint: disable=no-member
f'{self.__class__.__name__}(msg="{self.message}", field_errors={self.field_errors})'
)


Expand Down

0 comments on commit 8e71efa

Please sign in to comment.