Update app.py
Browse files
app.py
CHANGED
|
@@ -443,7 +443,7 @@ async def data_mode():
|
|
| 443 |
### authentication with a local yaml file.
|
| 444 |
import yaml
|
| 445 |
from yaml.loader import SafeLoader
|
| 446 |
-
with open('
|
| 447 |
config = yaml.load(file, Loader=SafeLoader)
|
| 448 |
authenticator = stauth.Authenticate(
|
| 449 |
config['credentials'],
|
|
|
|
| 443 |
### authentication with a local yaml file.
|
| 444 |
import yaml
|
| 445 |
from yaml.loader import SafeLoader
|
| 446 |
+
with open('./config.yaml') as file:
|
| 447 |
config = yaml.load(file, Loader=SafeLoader)
|
| 448 |
authenticator = stauth.Authenticate(
|
| 449 |
config['credentials'],
|