8000 chore: Prepare new dev branch by fsbraun · Pull Request #8223 · django-cms/django-cms · GitHub
[go: up one dir, main page]

Skip to content

chore: Prepare new dev branch #8223

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

Merged
merged 18 commits into from
May 21, 2025
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Fix import order
  • Loading branch information
fsbraun committed May 13, 2025
commit d31bcd228150c44a111fbb64e16f60fa5e1924a6
4 changes: 1 addition & 3 deletions cms/forms/validators.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from typing import Optional
from typing import TYPE_CHECKING, Optional

from django.core.exceptions import ValidationError
from django.core.validators import RegexValidator, URLValidator
Expand All @@ -7,8 +7,6 @@

from cms.utils.urlutils import admin_reverse, relative_url_regex

from typing import TYPE_CHECKING

if TYPE_CHECKING:
from cms.models.pagemodel import Page

Expand Down
Loading
0