8000 fix: Allow lazy wizard initialization by fsbraun · Pull Request #8267 · django-cms/django-cms · GitHub
[go: up one dir, main page]

Skip to content

fix: Allow lazy wizard initialization #8267

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 9 commits into from
Jun 28, 2025
Prev Previous commit
Add missing import
  • Loading branch information
fsbraun committed Jun 28, 2025
commit 4e46b83636e8450ca71a44f7ba1064d9430ea976
2 changes: 1 addition & 1 deletion cms/wizards/wizard_pool.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from django.utils.translation import gettext as _

from cms.utils.compat.warnings import RemovedInDjangoCMS50Warning
from cms.wizards.wizard_base import entry_choices, get_entries, get_entry # noqa: F401
from cms.wizards.wizard_base import Wizard, entry_choices, get_entries, get_entry # noqa: F401


class AlreadyRegisteredException(Exception):
Expand Down
Loading
0