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 #209

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 @@ -3,19 +3,19 @@
repos:

- repo: https://github.com/asottile/pyupgrade
rev: v3.18.0
rev: v3.19.1
hooks:
- id: pyupgrade
args: ["--py38-plus"]

- repo: https://github.com/adamchainz/django-upgrade
rev: 1.22.1
rev: 1.22.2
hooks:
- id: django-upgrade
args: ["--target-version", "3.0"]

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.6.9
rev: v0.9.3
hooks:
- id: ruff
args: [--fix, --exit-non-zero-on-fix]
Expand Down
2 changes: 1 addition & 1 deletion maintenance_mode/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def set_maintenance_mode(value):
# If maintenance mode is defined in settings, it can't be changed.
if settings.MAINTENANCE_MODE is not None:
raise ImproperlyConfigured(
"Maintenance mode cannot be set dynamically " "if defined in settings."
"Maintenance mode cannot be set dynamically if defined in settings."
)

if not isinstance(value, bool):
Expand Down
3 changes: 1 addition & 2 deletions maintenance_mode/management/commands/maintenance_mode.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@
class Command(BaseCommand):
args = "<on|off>"
help = (
f"run python manage.py maintenance_mode {args} "
"to change maintenance-mode state"
f"run python manage.py maintenance_mode {args} to change maintenance-mode state"
)

def add_arguments(self, parser):
Expand Down
Loading