From 33ce8a3d0b9020a513942725ae7a65e6c34f867f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Helleu?= Date: Mon, 14 Oct 2024 20:34:35 +0200 Subject: [PATCH] Add pylint ignored error (too many arguments) --- gitchart/gitchart.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gitchart/gitchart.py b/gitchart/gitchart.py index b44595e..1b647ea 100755 --- a/gitchart/gitchart.py +++ b/gitchart/gitchart.py @@ -149,7 +149,7 @@ class GitChart: datetime.date(2001, month, 1).strftime("%b") for month in range(1, 13) ] - # pylint: disable=too-many-positional-arguments + # pylint: disable=too-many-arguments,too-many-positional-arguments def __init__( self, chart_name, @@ -227,7 +227,7 @@ def _git_command_log(self, arguments, command2=None): git_log_cmd += [arguments] return self._git_command(git_log_cmd, command2) - # pylint: disable=too-many-positional-arguments + # pylint: disable=too-many-arguments,too-many-positional-arguments def _generate_bar_chart( self, data,