Skip to content

Commit 3d8aca0

Browse files
committed
Fix lines too long
1 parent 1c1c9cb commit 3d8aca0

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

msgcheck/po.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,8 @@ def build_temp_file_concat_files(filenames):
5959
class PoReport(object): # pylint: disable=too-few-public-methods
6060
"""A message in report (commonly an error in detected in gettext file)."""
6161

62-
def __init__(self, message, idmsg='', filename='-', line=0, mid='', # pylint: disable=too-many-arguments
62+
# pylint: disable=too-many-arguments
63+
def __init__(self, message, idmsg='', filename='-', line=0, mid='',
6364
mstr='', fuzzy=False):
6465
self.message = message
6566
self.idmsg = idmsg
@@ -121,7 +122,8 @@ class PoMessage(object):
121122
('%d files found', '%d fichiers trouvés')]
122123
"""
123124

124-
def __init__(self, filename, line, msg, charset, fuzzy, fmt, noqa): # pylint: disable=too-many-arguments
125+
# pylint: disable=too-many-arguments
126+
def __init__(self, filename, line, msg, charset, fuzzy, fmt, noqa):
125127
"""Build a PO message."""
126128
self.filename = filename
127129
self.line = line
@@ -381,7 +383,8 @@ def __init__(self, filename):
381383
}
382384
self.msgs = []
383385

384-
def _add_message(self, numline_msgid, fuzzy, fmt, noqa, msg): # pylint: disable=too-many-arguments
386+
# pylint: disable=too-many-arguments
387+
def _add_message(self, numline_msgid, fuzzy, fmt, noqa, msg):
385388
"""
386389
Add a message from PO file in list of messages.
387390
"""

0 commit comments

Comments
 (0)