Skip to content

Commit

Permalink
trying again
Browse files Browse the repository at this point in the history
  • Loading branch information
srirag21 committed Jul 11, 2024
1 parent c1fa43d commit f3eaff9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Welcome.py → st_app/Welcome.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import yaml
from yaml.loader import SafeLoader

cisco_logo = "cisco2.png"
cisco_logo = "../cisco2.png"

with st.sidebar:
st.image(cisco_logo, use_column_width=True)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
import yaml
from yaml.loader import SafeLoader

cisco_logo = "cisco2.png"
cisco_logo = "../cisco2.png"

with st.sidebar:
st.image(cisco_logo, use_column_width=True)

names = ["Dodge Demon", "Jeep Trackhawk"]
usernames = ["dodge", "jeep"]

with open('config.yml') as file:
with open('../config.yml') as file:
config = yaml.load(file, Loader=SafeLoader)
authenticator = stauth.Authenticate(
config['credentials'],
Expand Down
File renamed without changes.

0 comments on commit f3eaff9

Please sign in to comment.