Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -3,7 +3,7 @@ from streamlit_option_menu import option_menu
|
|
3 |
|
4 |
def loadfile():
|
5 |
with open("data.json") as f:
|
6 |
-
data = load
|
7 |
return data
|
8 |
|
9 |
def savefile(newuser):
|
|
|
3 |
|
4 |
def loadfile():
|
5 |
with open("data.json") as f:
|
6 |
+
data = json.load(f)
|
7 |
return data
|
8 |
|
9 |
def savefile(newuser):
|