Skip to content

Commit

Permalink
chore: silence mypy B027 forever
Browse files Browse the repository at this point in the history
Signed-off-by: Paul Horton <paul.horton@owasp.org>
  • Loading branch information
madpah committed Jan 24, 2023
1 parent a5c4e25 commit 4112b7e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion serializable/helpers.py
Expand Up @@ -25,7 +25,7 @@

class BaseHelper(ABC):

def __init__(self, *args: Any, **kwargs: Any) -> None: # type: ignore[empty-body]
def __init__(self, *args: Any, **kwargs: Any) -> None:
pass

@classmethod
Expand Down
2 changes: 2 additions & 0 deletions tox.ini
Expand Up @@ -71,3 +71,5 @@ ignore = E305, I003
# ignore Opinionated Warnings - which are documented as disabled by default
# See https://github.com/sco1/flake8-annotations#opinionated-warnings
ANN401
# serializable/helpers.py:28
B027

0 comments on commit 4112b7e

Please sign in to comment.