Skip to content

Commit c0b8bc7

Browse files
Bump pylint from 3.2.7 to 3.3.0 (#895)
1 parent e9cd2a9 commit c0b8bc7

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

matter_server/server/server.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ class MatterServer:
100100
_runner: web.AppRunner | None = None
101101
_http: MultiHostTCPSite | None = None
102102

103-
def __init__( # noqa: PLR0913, pylint: disable=too-many-arguments
103+
def __init__( # noqa: PLR0913, pylint: disable=too-many-positional-arguments, too-many-arguments
104104
self,
105105
storage_path: str,
106106
vendor_id: int,

pyproject.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ test = [
4848
"mypy==1.11.2",
4949
"pre-commit==3.8.0",
5050
"pre-commit-hooks==4.6.0",
51-
"pylint==3.2.7",
51+
"pylint==3.3.0",
5252
"pytest==8.3.3",
5353
"pytest-asyncio==0.24.0",
5454
"pytest-aiohttp==1.0.5",
@@ -117,6 +117,7 @@ good-names = [
117117
[tool.pylint.DESIGN]
118118
max-args = 10
119119
max-attributes = 12
120+
max-positional-arguments = 10
120121

121122
[tool.pylint."MESSAGES CONTROL"]
122123
disable = [

0 commit comments

Comments
 (0)