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

ci: pre-commit autoupdate #1051

Open
wants to merge 2 commits into
base: main
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
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,17 @@ fail_fast: true

repos:
- repo: https://github.com/adamchainz/django-upgrade
rev: '1.22.1'
rev: '1.22.2'
hooks:
- id: django-upgrade
args: [--target-version, "3.2"]
- repo: https://github.com/asottile/pyupgrade
rev: v3.19.0
rev: v3.19.1
hooks:
- id: pyupgrade
args: ["--py310-plus"]
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.7.2
rev: v0.8.6
hooks:
- id: ruff
args: [--fix, --exit-non-zero-on-fix]
Expand Down
2 changes: 1 addition & 1 deletion core/default_eventpage_content.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
def get_random_photo(section):
if section in DEFAULT_BACKGROUND_PHOTOS:
photos = DEFAULT_BACKGROUND_PHOTOS[section]
return UploadedFile(open(photos[random.randint(0, len(photos) - 1)], "rb")) # noqa: SIM115
return UploadedFile(open(photos[random.randint(0, len(photos) - 1)], "rb"))
return None


Expand Down
2 changes: 1 addition & 1 deletion story/management/commands/fetch_tumblr_stories.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def download_image(url: str) -> tuple[str, File]:
image_name = urlparse(url).path.split("/")[-1]
content = urlretrieve(url)
# TODO: could this be done differently without opening the file here?
return image_name, File(open(content[0], "rb")) # noqa: SIM115
return image_name, File(open(content[0], "rb"))


class Command(BaseCommand):
Expand Down
Loading