Skip to content

Commit a5f6b34

Browse files
committed
cleanup
1 parent fbd4464 commit a5f6b34

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

examples/stock_monitor_ui.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def __init__(self, **kwargs):
6666
# Stock selection (using only AAPL for now, expand as needed)
6767
self.stock_spinner = Spinner(
6868
text="AAPL",
69-
values=("AAPL",),
69+
values=("AAPL", "GOOGL", "MSFT", "AMZN", "TSLA"),
7070
size_hint_y=None,
7171
height=40,
7272
)
@@ -145,6 +145,7 @@ class AsyncKivyApp(App):
145145

146146
def __init__(self):
147147
super().__init__()
148+
self.title = "Stock Monitor"
148149
self.background_task_running = True
149150
self.tasks = []
150151
self.view = None

0 commit comments

Comments
 (0)