Skip to content

Commit 6d09a05

Browse files
committed
Update app.py
1 parent e7d7c7d commit 6d09a05

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/app.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
from streamlit_authenticator.utilities import *
1515

1616
# Loading config file
17-
with open('../config.yaml', 'r', encoding='utf-8') as file:
17+
with open('config.yaml', 'r', encoding='utf-8') as file:
1818
config = yaml.load(file, Loader=SafeLoader)
1919

2020
# Pre-hashing all plain text passwords once
@@ -109,5 +109,5 @@
109109
st.error(e)
110110

111111
# Saving config file
112-
with open('../config.yaml', 'w', encoding='utf-8') as file:
112+
with open('config.yaml', 'w', encoding='utf-8') as file:
113113
yaml.dump(config, file, default_flow_style=False, allow_unicode=True)

0 commit comments

Comments
 (0)