Skip to content

Commit

Permalink
Bump pylint from 3.2.7 to 3.3.0 (#895)
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] committed Sep 23, 2024
1 parent e9cd2a9 commit c0b8bc7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion matter_server/server/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ class MatterServer:
_runner: web.AppRunner | None = None
_http: MultiHostTCPSite | None = None

def __init__( # noqa: PLR0913, pylint: disable=too-many-arguments
def __init__( # noqa: PLR0913, pylint: disable=too-many-positional-arguments, too-many-arguments
self,
storage_path: str,
vendor_id: int,
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ test = [
"mypy==1.11.2",
"pre-commit==3.8.0",
"pre-commit-hooks==4.6.0",
"pylint==3.2.7",
"pylint==3.3.0",
"pytest==8.3.3",
"pytest-asyncio==0.24.0",
"pytest-aiohttp==1.0.5",
Expand Down Expand Up @@ -117,6 +117,7 @@ good-names = [
[tool.pylint.DESIGN]
max-args = 10
max-attributes = 12
max-positional-arguments = 10

[tool.pylint."MESSAGES CONTROL"]
disable = [
Expand Down

0 comments on commit c0b8bc7

Please sign in to comment.