Skip to content

Commit

Permalink
Bump pylint from 3.2.7 to 3.3.0 (#57)
Browse files Browse the repository at this point in the history
* Bump pylint from 3.2.7 to 3.3.0

Bumps [pylint](https://github.com/pylint-dev/pylint) from 3.2.7 to 3.3.0.
- [Release notes](https://github.com/pylint-dev/pylint/releases)
- [Commits](pylint-dev/pylint@v3.2.7...v3.3.0)

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

Signed-off-by: dependabot[bot] <support@github.com>

* Fix linter

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Fstei <frederik.steinkamp@hochfrequenz.de>
  • Loading branch information
dependabot[bot] and FreddyFox892 authored Sep 24, 2024
1 parent 110d273 commit 69d0be9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions dev_requirements/requirements-linting.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
# pip-compile '.\dev_requirements\requirements-linting.in'
#
astroid==3.2.4
astroid==3.3.3
# via pylint
dill==0.3.7
# via pylint
Expand All @@ -14,7 +14,7 @@ mccabe==0.7.0
# via pylint
platformdirs==3.1.0
# via pylint
pylint==3.2.7
pylint==3.3.0
# via -r dev_requirements/requirements-linting.in
tomli==2.0.1
# via pylint
Expand Down
2 changes: 1 addition & 1 deletion src/error_handler/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class Catcher(Generic[T]):
called accordingly.
"""

# pylint: disable=too-many-arguments
# pylint: disable=too-many-positional-arguments, too-many-arguments
def __init__(
self,
on_success: Callback | None = None,
Expand Down
1 change: 1 addition & 0 deletions src/error_handler/stream.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ def map(
)
return result_values

# pylint: disable=too-many-positional-arguments
@aiostream.pipable_operator
def action(
source: AsyncIterable[T],
Expand Down

0 comments on commit 69d0be9

Please sign in to comment.