awacke1 commited on
Commit
e59ea3f
·
verified ·
1 Parent(s): 4c1130f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -0
app.py CHANGED
@@ -10,6 +10,12 @@ from streamlit_flow import streamlit_flow
10
  from streamlit_flow.elements import StreamlitFlowNode, StreamlitFlowEdge
11
  from streamlit_flow.layouts import TreeLayout
12
 
 
 
 
 
 
 
13
  useConfig=True
14
  if useConfig: # Component code - useConfig=False should allow it to work if re-evaluating UI elements due to code modify
15
  st.set_page_config(
@@ -24,6 +30,7 @@ if useConfig: # Component code - useConfig=False should allow it to work if re-e
24
  'About': title
25
  }
26
  )
 
27
  # 🐱 Cat Rider and Gear Data
28
  CAT_RIDERS = [
29
  {"name": "Whiskers", "type": "Speed", "emoji": "🐾", "strength": 3, "skill": 7},
 
10
  from streamlit_flow.elements import StreamlitFlowNode, StreamlitFlowEdge
11
  from streamlit_flow.layouts import TreeLayout
12
 
13
+ # 1. Configuration
14
+ Site_Name = '🦁CatRider🐈'
15
+ title="🦁CatRider🐈by👤Aaron Wacker"
16
+ helpURL='https://huggingface.co/awacke1'
17
+ bugURL='https://huggingface.co/spaces/awacke1'
18
+ icons='🦁'
19
  useConfig=True
20
  if useConfig: # Component code - useConfig=False should allow it to work if re-evaluating UI elements due to code modify
21
  st.set_page_config(
 
30
  'About': title
31
  }
32
  )
33
+
34
  # 🐱 Cat Rider and Gear Data
35
  CAT_RIDERS = [
36
  {"name": "Whiskers", "type": "Speed", "emoji": "🐾", "strength": 3, "skill": 7},