Update app.py
Browse files
app.py
CHANGED
|
@@ -278,7 +278,7 @@ async def data_mode():
|
|
| 278 |
# authentication.
|
| 279 |
import yaml
|
| 280 |
from yaml.loader import SafeLoader
|
| 281 |
-
with open('
|
| 282 |
config = yaml.load(file, Loader=SafeLoader)
|
| 283 |
authenticator = stauth.Authenticate(
|
| 284 |
config['credentials'],
|
|
|
|
| 278 |
# authentication.
|
| 279 |
import yaml
|
| 280 |
from yaml.loader import SafeLoader
|
| 281 |
+
with open('./config.yaml') as file:
|
| 282 |
config = yaml.load(file, Loader=SafeLoader)
|
| 283 |
authenticator = stauth.Authenticate(
|
| 284 |
config['credentials'],
|