Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump pylint from 3.2.7 to 3.3.1 #908

Merged
merged 1 commit into from
Oct 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading