Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
flashcode committed Oct 14, 2024
1 parent 5168289 commit 579d2ae
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- uses: actions/checkout@v2

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

Expand Down
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
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
def _generate_bar_chart(
self,
data,
Expand Down

0 comments on commit 579d2ae

Please sign in to comment.