Yapp99 commited on
Commit
87577a0
·
1 Parent(s): 2e04abf

adjustments

Browse files
Files changed (1) hide show
  1. app.py +6 -2
app.py CHANGED
@@ -1,10 +1,14 @@
1
  import streamlit as st
2
  import requests
3
  from init import init
4
- from dotenv import load_dotenv
5
  import os
6
 
7
- load_dotenv()
 
 
 
 
 
8
 
9
  init()
10
 
 
1
  import streamlit as st
2
  import requests
3
  from init import init
 
4
  import os
5
 
6
+ try:
7
+ from dotenv import load_dotenv
8
+
9
+ load_dotenv()
10
+ except ModuleNotFoundError:
11
+ pass
12
 
13
  init()
14