Skip to content

Commit

Permalink
Add pylint ignored error (too many arguments)
Browse files Browse the repository at this point in the history
  • Loading branch information
flashcode committed Oct 14, 2024
1 parent 25a5a73 commit 33ce8a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gitchart/gitchart.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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,
Expand Down

0 comments on commit 33ce8a3

Please sign in to comment.