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

[pre-commit.ci] pre-commit autoupdate #1

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
20 changes: 10 additions & 10 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ repos:
hooks:
- id: check-hooks-apply
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.3.0
rev: v5.0.0
hooks:
- id: check-ast
- id: check-builtin-literals
Expand All @@ -26,7 +26,7 @@ repos:
# additional_dependencies:
# - types-toml
- repo: https://github.com/pre-commit/pygrep-hooks
rev: v1.9.0
rev: v1.10.0
hooks:
- id: python-check-blanket-noqa
- id: python-check-blanket-type-ignore
Expand All @@ -35,23 +35,23 @@ repos:
- id: python-no-log-warn
- id: python-use-type-annotations
- repo: https://github.com/asottile/add-trailing-comma
rev: v2.2.3
rev: v3.1.0
hooks:
- id: add-trailing-comma
- repo: https://github.com/asottile/pyupgrade
rev: v2.34.0
rev: v3.19.0
hooks:
- id: pyupgrade
- repo: https://github.com/asottile/yesqa
rev: v1.3.0
rev: v1.5.0
hooks:
- id: yesqa
- repo: https://github.com/psf/black
rev: 22.3.0
rev: 24.10.0
hooks:
- id: black
- repo: https://github.com/PyCQA/flake8
rev: 4.0.1
rev: 7.1.1
hooks:
- id: flake8
args: ["--max-line-length", "88", "--extend-ignore", "E501"]
Expand All @@ -73,16 +73,16 @@ repos:
# - toml
# exclude: airflint/__main__.py|tests/
- repo: https://github.com/pycqa/isort
rev: 5.12.0
rev: 5.13.2
hooks:
- id: isort
args: ["--profile", "black"]
- repo: https://github.com/crate-ci/typos
rev: v1.10.2
rev: typos-dict-v0.11.35
hooks:
- id: typos
- repo: https://github.com/pycqa/autoflake
rev: v1.4
rev: v2.3.1
hooks:
- id: autoflake
args: ["--remove-all-unused-imports", "--in-place"]
Expand Down
3 changes: 2 additions & 1 deletion diggerpy/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,8 @@ class Release:
year (str): The release year.
genres (list): A list of genres associated with the release.
styles (list): A list of styles associated with the release.
tracklist (list): A list of track objects representing the release's tracklist."""
tracklist (list): A list of track objects representing the release's tracklist.
"""

def __init__(self, data):
self.id = data["id"]
Expand Down
Loading