Skip to content

Commit

Permalink
tests: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
klen committed Nov 29, 2021
1 parent a993ad9 commit 09e04c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pylama/errors.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ class Error:

__slots__ = 'source', 'col', 'lnum', 'etype', 'message', 'filename', 'number'

def __init__(self, source="pylama", col=1, lnum=1, type=None, # pylint: ignore=R0913
def __init__(self, source="pylama", col=1, lnum=1, type=None, # pylint: disable=R0913
text="unknown error", filename="", number="", **_):
""" Init error information with default values. """
text = str(text).strip().replace('\n', ' ')
Expand Down

0 comments on commit 09e04c9

Please sign in to comment.