Spaces:
Runtime error
Runtime error
Updated one type hint
Browse files- src/st_helpers.py +1 -1
src/st_helpers.py
CHANGED
@@ -19,7 +19,7 @@ def login(pw: str) -> bool:
|
|
19 |
return False
|
20 |
|
21 |
|
22 |
-
def st_setup(page_title: str, layout: str = 'wide', skip_login: bool = False):
|
23 |
"""
|
24 |
Sets up standard outline (wide layout), checks for logged in status and then
|
25 |
displays the login box if not logged in. Should be used as a conditional to display
|
|
|
19 |
return False
|
20 |
|
21 |
|
22 |
+
def st_setup(page_title: str, layout: str = 'wide', skip_login: bool = False) -> None:
|
23 |
"""
|
24 |
Sets up standard outline (wide layout), checks for logged in status and then
|
25 |
displays the login box if not logged in. Should be used as a conditional to display
|