Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -143,7 +143,7 @@ def parse_summary_files(files) -> pd.DataFrame:
|
|
| 143 |
|
| 144 |
|
| 145 |
@st.cache_data(show_spinner=False)
|
| 146 |
-
def mongo_records(
|
| 147 |
if not (db_name and coll_name):
|
| 148 |
return []
|
| 149 |
user = quote_plus(os.getenv("MONGO_USER"))
|
|
|
|
| 143 |
|
| 144 |
|
| 145 |
@st.cache_data(show_spinner=False)
|
| 146 |
+
def mongo_records(db_name: str, coll_name: str, student: str | None, source: str | None, start: str | None, end: str | None) -> List[dict]:
|
| 147 |
if not (db_name and coll_name):
|
| 148 |
return []
|
| 149 |
user = quote_plus(os.getenv("MONGO_USER"))
|