Skip to content

Commit

Permalink
Bump pylint from 3.2.7 to 3.3.1
Browse files Browse the repository at this point in the history
Bumps [pylint](https://github.com/pylint-dev/pylint) from 3.2.7 to 3.3.1.
- [Release notes](https://github.com/pylint-dev/pylint/releases)
- [Commits](pylint-dev/pylint@v3.2.7...v3.3.1)

---
updated-dependencies:
- dependency-name: pylint
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored and marcospri committed Oct 8, 2024
1 parent 64b737e commit 49b5baf
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions requirements/lint.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ amqp==5.2.0
# -r requirements/requirements.txt
# -r requirements/tests.txt
# kombu
astroid==3.2.4
astroid==3.3.4
# via pylint
attrs==23.2.0
# via
Expand Down Expand Up @@ -270,7 +270,7 @@ pyjwt==2.8.0
# -r requirements/requirements.txt
# -r requirements/tests.txt
# pyramid-googleauth
pylint==3.2.7
pylint==3.3.1
# via -r requirements/lint.in
pyproject-hooks==1.0.0
# via
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/checkmate/models/reason_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class DummyEnum(OrderedEnum):
"op",
[operator.lt, operator.le, operator.eq, operator.ne, operator.ge, operator.gt],
)
# pylint: disable=too-many-arguments
# pylint: disable=too-many-arguments,too-many-positional-arguments
def test_comparison(self, l_pos, l_value, op, r_pos, r_value):
assert op(l_value, r_value) is op(l_pos, r_pos)

Expand Down
2 changes: 1 addition & 1 deletion tests/unit/checkmate/security_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def test_forget_passes_kwargs_to_subpolicy(self, policy, effective_subpolicy):
@pytest.mark.parametrize(
"iface,subpolicy", [(SubPolicy1, "subpolicy1"), (SubPolicy2, "subpolicy2")]
)
def test_remember(
def test_remember( # pylint:disable=too-many-positional-arguments
self,
iface,
subpolicy,
Expand Down

0 comments on commit 49b5baf

Please sign in to comment.