From 3aae374c89ba261a39778be75f86333c2750126a Mon Sep 17 00:00:00 2001 From: Mandel Olaiya Date: Sat, 9 May 2026 11:15:24 +0200 Subject: [PATCH] Fix import order for hooks --- mandelstudio/wagtail_hooks.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/mandelstudio/wagtail_hooks.py b/mandelstudio/wagtail_hooks.py index 97fdfda..f81f5ba 100644 --- a/mandelstudio/wagtail_hooks.py +++ b/mandelstudio/wagtail_hooks.py @@ -1,8 +1,7 @@ -from mandelblog_content_guard.hooks import * # noqa: F401,F403 - -from wagtail.snippets.views.snippets import SnippetViewSet from wagtail.snippets.models import register_snippet +from wagtail.snippets.views.snippets import SnippetViewSet +from mandelblog_content_guard.hooks import * # noqa: F401,F403 from mandelstudio.models import ContactMessage