Spaces:
Runtime error
Runtime error
HardWorkingStation commited on
Commit Β·
7f1317b
1
Parent(s): d8399fc
Initial commit
Browse files- src/app.py +7 -7
src/app.py
CHANGED
|
@@ -7,17 +7,17 @@ import tools
|
|
| 7 |
|
| 8 |
STEP_2 = STEP_3 = STEP_4 = STEP_5 = STEP_6 = False
|
| 9 |
|
| 10 |
-
hide_menu_style = """
|
| 11 |
-
<style>
|
| 12 |
-
footer {visibility: hidden;}
|
| 13 |
-
</style>
|
| 14 |
-
"""
|
| 15 |
-
st.markdown(hide_menu_style, unsafe_allow_html=True)
|
| 16 |
-
|
| 17 |
st.set_page_config(
|
| 18 |
page_title="A/B Tests", page_icon="π", initial_sidebar_state="expanded"
|
| 19 |
)
|
| 20 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 21 |
st.title('A/B tests lab')
|
| 22 |
|
| 23 |
st.image('images/main.jpg')
|
|
|
|
| 7 |
|
| 8 |
STEP_2 = STEP_3 = STEP_4 = STEP_5 = STEP_6 = False
|
| 9 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 10 |
st.set_page_config(
|
| 11 |
page_title="A/B Tests", page_icon="π", initial_sidebar_state="expanded"
|
| 12 |
)
|
| 13 |
|
| 14 |
+
hide_menu_style = """
|
| 15 |
+
<style>
|
| 16 |
+
footer {visibility: hidden;}
|
| 17 |
+
</style>
|
| 18 |
+
"""
|
| 19 |
+
st.markdown(hide_menu_style, unsafe_allow_html=True)
|
| 20 |
+
|
| 21 |
st.title('A/B tests lab')
|
| 22 |
|
| 23 |
st.image('images/main.jpg')
|