From 36a30790403e5d5894576b1bf4a0de6f0fd6ce3c Mon Sep 17 00:00:00 2001 From: Janis Hutz Date: Tue, 11 Mar 2025 15:12:36 +0100 Subject: [PATCH] Some fixes for update --- biogascontrollerapp/gui/PopupManager.py | 2 +- biogascontrollerapp/gui/popups/popups.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/biogascontrollerapp/gui/PopupManager.py b/biogascontrollerapp/gui/PopupManager.py index adc546c..a2fbd42 100644 --- a/biogascontrollerapp/gui/PopupManager.py +++ b/biogascontrollerapp/gui/PopupManager.py @@ -1,3 +1,3 @@ -from gui.popups import * +from gui.popups.popups import * diff --git a/biogascontrollerapp/gui/popups/popups.py b/biogascontrollerapp/gui/popups/popups.py index 5971a70..d2728ce 100644 --- a/biogascontrollerapp/gui/popups/popups.py +++ b/biogascontrollerapp/gui/popups/popups.py @@ -1,8 +1,8 @@ -from kivy.uix.screenmanager import Screen +from kivy.uix.popup import Popup from kivy.lang import Builder -class HomeScreen(Screen): +class ThisPopup(Popup): def start(self): pass