From da271ee17b26c696d190be616f110d55320f0a59 Mon Sep 17 00:00:00 2001 From: Alexander Tarasov Date: Sun, 20 Jul 2025 01:13:33 +0300 Subject: [PATCH] fix incorrect imports order --- web/custom_widgets/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/custom_widgets/__init__.py b/web/custom_widgets/__init__.py index 37cc43a..3acf89b 100644 --- a/web/custom_widgets/__init__.py +++ b/web/custom_widgets/__init__.py @@ -1,3 +1,3 @@ -from web.custom_widgets.content_card import ContentCard from web.custom_widgets.content_dialog import ContentDialog +from web.custom_widgets.content_card import ContentCard from web.custom_widgets.header import draw_header