Skip to content

Commit

Permalink
Bump pylint from 3.1.0 to 3.3.1 (#169)
Browse files Browse the repository at this point in the history
* Bump pylint from 3.1.0 to 3.3.1

Bumps [pylint](https://github.com/pylint-dev/pylint) from 3.1.0 to 3.3.1.
- [Release notes](https://github.com/pylint-dev/pylint/releases)
- [Commits](pylint-dev/pylint@v3.1.0...v3.3.1)

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

Signed-off-by: dependabot[bot] <[email protected]>

* Delint

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Martin Hjelmare <[email protected]>
  • Loading branch information
dependabot[bot] and MartinHjelmare authored Nov 8, 2024
1 parent 68e366a commit f9f5e13
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions haffmpeg/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,7 @@ async def _process_lines(self, pattern: Optional[str] = None) -> None:
except Exception: # pylint: disable=broad-except
break

# pylint: disable-next=possibly-used-before-assignment
match = True if pattern is None else cmp.search(line)
if match:
_LOGGER.debug("Process: %s", line)
Expand Down
1 change: 1 addition & 0 deletions pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ disable=
locally-disabled,
too-few-public-methods,
too-many-arguments,
too-many-positional-arguments,
too-many-branches,
too-many-instance-attributes,
too-many-lines,
Expand Down
2 changes: 1 addition & 1 deletion requirements_lint.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
flake8==7.1.1
pylint==3.1.0
pylint==3.3.1
pylint-strict-informational==0.1

0 comments on commit f9f5e13

Please sign in to comment.