mirror of
https://github.com/janishutz/BiogasControllerApp.git
synced 2025-11-25 05:44:23 +00:00
17 lines
240 B
Python
17 lines
240 B
Python
from kivy.uix.popup import Popup
|
|
from kivy.lang import Builder
|
|
|
|
|
|
class ThisPopup(Popup):
|
|
def start(self):
|
|
pass
|
|
|
|
def quit(self):
|
|
pass
|
|
|
|
def to_settings(self):
|
|
pass
|
|
|
|
|
|
Builder.load_file('./gui/home/home.kv')
|