We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc005fc commit bb50a1aCopy full SHA for bb50a1a
fun_SPEC_NEC/App_Spec.py
@@ -25,16 +25,12 @@
25
# pg.run()
26
27
import streamlit as st
28
-import runpy
29
30
-def main():
31
- st.sidebar.title("Navigation")
32
- app_mode = st.sidebar.radio("Go to", ["About Me", "Spec NEC"])
+# --- Page Setup ---
33
34
- if app_mode == "About Me":
35
- about_me()
36
- elif app_mode == "Spec NEC":
37
- spec_nec()
+def main():
+ about_me()
+ spec_nec()
38
39
def about_me():
40
runpy.run_path('about_me.py')
@@ -46,3 +42,4 @@ def spec_nec():
46
42
main()
47
43
48
44
45
+
0 commit comments