Skip to content

Commit

Permalink
lint: Fix misc pylint file warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
jerry-skydio committed Dec 7, 2024
1 parent 0873acc commit 6229aa6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
5 changes: 2 additions & 3 deletions pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,6 @@ disable=raw-checker-failed,
too-many-locals,
too-many-return-statements,
too-many-statements,
too-many-positional-arguments,

# Enable the message, report, category or checker with the given id(s). You can
# either give multiple identifier separated by comma (,) or put this option
Expand Down Expand Up @@ -591,5 +590,5 @@ min-public-methods=2

# Exceptions that will emit a warning when being caught. Defaults to
# "BaseException, Exception".
overgeneral-exceptions=BaseException,
Exception
overgeneral-exceptions=builtins.BaseException,
builtins.Exception
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ include_package_data=True
dev =
black==24.1.1
isort
pylint
mypy
pylint==3.2.7
mypy==1.13.0
build
twine
pytest
Expand Down

0 comments on commit 6229aa6

Please sign in to comment.