Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump pylint from 3.2.3 to 3.3.1 #1472

Merged
merged 2 commits into from
Dec 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions bin/create_pdf_template.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ def _insert_jinja2_blocks(contents):


if __name__ == "__main__":
# pylint: disable=invalid-name
with open(SOURCE_FILE, encoding="utf8") as handle:
template = _insert_jinja2_blocks(handle.read())
template = _insert(
Expand Down
14 changes: 7 additions & 7 deletions requirements/lint.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
#
alembic==1.13.2
# via
# -r functests.txt
# -r tests.txt
astroid==3.2.2
# -r requirements/functests.txt
# -r requirements/tests.txt
astroid==3.3.5
# via pylint
attrs==23.2.0
# via
Expand Down Expand Up @@ -276,10 +276,10 @@ pydocstyle==6.3.0
# via -r lint.in
pyjwt==2.9.0
# via
# -r functests.txt
# -r tests.txt
pylint==3.2.3
# via -r lint.in
# -r requirements/functests.txt
# -r requirements/tests.txt
pylint==3.3.1
# via -r requirements/lint.in
pyproject-hooks==1.0.0
# via
# -r functests.txt
Expand Down
1 change: 1 addition & 0 deletions tests/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ disable = [
"too-many-public-methods",

"too-many-arguments",
"too-many-positional-arguments",

# not-callable is mis-firing on all pytest.mark.parametrize usages, so
# disable it for now. This can be re-enabled once a new pytest version
Expand Down
2 changes: 1 addition & 1 deletion via/services/youtube.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class YouTubeDataAPIError(Exception):


class YouTubeService:
def __init__( # pylint:disable=too-many-arguments
def __init__( # pylint:disable=too-many-arguments,too-many-positional-arguments
self,
db_session,
enabled: bool,
Expand Down
Loading