Renamed thing.py to system.py and set a proper title

This commit is contained in:
ChaoticByte 2025-02-23 16:37:18 +01:00
parent eb8f666823
commit a235041277
No known key found for this signature in database
3 changed files with 3 additions and 3 deletions

View file

@ -2,7 +2,7 @@
from typing import List from typing import List
from .thing import System, SystemState from .system import System, SystemState
from nicegui import ui from nicegui import ui

View file

@ -3,7 +3,7 @@
from nicegui import ui from nicegui import ui
from dashboard.thing import System, SystemState from dashboard.system import System, SystemState
from dashboard.ui import init_ui from dashboard.ui import init_ui
@ -54,4 +54,4 @@ systems = [
# #
init_ui(systems) init_ui(systems)
ui.run(show=False) ui.run(show=False, title="Dashboard")