Skip to content

Commit b0207a8

Browse files
committed
Add pylint ignored error
1 parent eac7d41 commit b0207a8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

msgcheck/po.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def get_concatenated_files(filenames):
5454
class PoReport: # pylint: disable=too-few-public-methods
5555
"""A message in report (commonly an error in detected in gettext file)."""
5656

57-
# pylint: disable=too-many-arguments
57+
# pylint: disable=too-many-arguments, too-many-positional-arguments
5858
def __init__(
5959
self,
6060
message,
@@ -123,7 +123,7 @@ class PoMessage:
123123
("%d files found", "%d fichiers trouvés")]
124124
"""
125125

126-
# pylint: disable=too-many-arguments
126+
# pylint: disable=too-many-arguments, too-many-positional-arguments
127127
def __init__(self, filename, line, msg, charset, fuzzy, fmt, noqa):
128128
"""Build a PO message."""
129129
self.filename = filename
@@ -427,7 +427,7 @@ def __init__(self, filename):
427427
}
428428
self.msgs = []
429429

430-
# pylint: disable=too-many-arguments
430+
# pylint: disable=too-many-arguments, too-many-positional-arguments
431431
def _add_message(self, numline_msgid, fuzzy, fmt, noqa, msg):
432432
"""
433433
Add a message from PO file in list of messages.

0 commit comments

Comments
 (0)