Spaces:
Paused
Paused
add __init__.py
Browse files
opendashboards/hello_world.py
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
import streamlit as st
|
2 |
-
from utils.utils import
|
3 |
st.write('HELLO BOITCHES')
|
|
|
1 |
import streamlit as st
|
2 |
+
from utils.utils import test
|
3 |
st.write('HELLO BOITCHES')
|
opendashboards/utils/utils.py
CHANGED
@@ -24,6 +24,10 @@ from pandas.api.types import is_list_like
|
|
24 |
from typing import List, Dict, Any, Union
|
25 |
|
26 |
|
|
|
|
|
|
|
|
|
27 |
def get_runs(project: str = "openvalidators", filters: Dict[str, Any] = None, return_paths: bool = False) -> List:
|
28 |
"""Download runs from wandb.
|
29 |
|
|
|
24 |
from typing import List, Dict, Any, Union
|
25 |
|
26 |
|
27 |
+
def test():
|
28 |
+
print ("Hello World!")
|
29 |
+
|
30 |
+
|
31 |
def get_runs(project: str = "openvalidators", filters: Dict[str, Any] = None, return_paths: bool = False) -> List:
|
32 |
"""Download runs from wandb.
|
33 |
|