From 7fc1cbc3a91070cf3105f19c61f781d8c1c0beab Mon Sep 17 00:00:00 2001 From: Russell Schmidt Date: Wed, 23 Apr 2025 17:02:47 -0500 Subject: [PATCH] Fix error "No module named 'ui.ui_state'" Was unable to run locally at tips due to an import not including the package name. --- contact/utilities/singleton.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contact/utilities/singleton.py b/contact/utilities/singleton.py index 94e9171..17fb99b 100644 --- a/contact/utilities/singleton.py +++ b/contact/utilities/singleton.py @@ -1,4 +1,4 @@ -from ui.ui_state import ChatUIState, InterfaceState, AppState +from contact.ui.ui_state import ChatUIState, InterfaceState, AppState ui_state = ChatUIState() interface_state = InterfaceState()