rafatjah's picture
Spelling fix pole to poll
0d937c2
raw
history blame
448 Bytes
import streamlit as st
import uuid
@st.cache_resource
def load_polls():
return []
def find_poll(poll_name):
for poll in load_polls():
if poll["name"] == poll_name:
return poll
return None
def generate_uuid():
return uuid.uuid4()
def get_options():
return [
"Low Pace",
"Good Pace",
"Fast Pace",
"Have Question",
"Missed a Point",
"Need a brake",
]