Skip to content

Commit

Permalink
Failing codestyle checks due to latest Python/pylint
Browse files Browse the repository at this point in the history
  • Loading branch information
tommystendahl committed Nov 1, 2024
1 parent ed72634 commit e5801c9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,10 +109,10 @@ jobs:
java-version: ${{ matrix.java_version }}
distribution: 'temurin'
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Set up Python 3.8
- name: Set up Python 3
uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0
with:
python-version: 3.8
python-version: 3
- name: install dependencies
run: mvn install -DskipTests=true
- run: mvn $TEST_SUITE -B
Expand Down
2 changes: 1 addition & 1 deletion ecchronos-binary/src/pylib/ecchronoslib/rest.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ def post(self, keyspace=None, table=None, local=False, repair_type="vnode"):
result = result.transform_with_data(new_data=[Repair(x) for x in result.data])
return result

def get_repair_info(self, keyspace=None, table=None, since=None, # pylint: disable=too-many-arguments
def get_repair_info(self, keyspace=None, table=None, since=None, # pylint: disable=too-many-arguments, too-many-positional-arguments
duration=None, local=False):
request_url = V2RepairSchedulerRequest.repair_info_url
if keyspace:
Expand Down

0 comments on commit e5801c9

Please sign in to comment.