Upload app.py
Browse files
app.py
CHANGED
@@ -287,7 +287,7 @@ async def data_mode():
|
|
287 |
# authentication.
|
288 |
import yaml
|
289 |
from yaml.loader import SafeLoader
|
290 |
-
with open('
|
291 |
config = yaml.load(file, Loader=SafeLoader)
|
292 |
authenticator = stauth.Authenticate(
|
293 |
config['credentials'],
|
|
|
287 |
# authentication.
|
288 |
import yaml
|
289 |
from yaml.loader import SafeLoader
|
290 |
+
with open('./config.yaml') as file:
|
291 |
config = yaml.load(file, Loader=SafeLoader)
|
292 |
authenticator = stauth.Authenticate(
|
293 |
config['credentials'],
|