mirror of
https://github.com/janishutz/BiogasControllerApp.git
synced 2025-11-25 05:44:23 +00:00
11 lines
289 B
Python
11 lines
289 B
Python
from kivy.uix.screenmanager import Screen
|
|
from kivy.lang import Builder
|
|
import webbrowser
|
|
|
|
|
|
class SettingsScreen(Screen):
|
|
def report_issue(self):
|
|
webbrowser.open('https://github.com/janishutz/BiogasControllerApp/issues', new=2)
|
|
|
|
Builder.load_file('./gui/settings/settings.kv')
|