James McCool commited on
Commit
bae6d41
·
1 Parent(s): c7d49f4

Update MongoDB database name in app.py from NHL_Database to MLB_Database to reflect the new data focus.

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -27,7 +27,7 @@ def init_conn():
27
 
28
  uri = st.secrets['mongo_uri']
29
  client = pymongo.MongoClient(uri, retryWrites=True, serverSelectionTimeoutMS=500000)
30
- db = client["NHL_Database"]
31
 
32
  gc = gspread.service_account_from_dict(credentials)
33
 
 
27
 
28
  uri = st.secrets['mongo_uri']
29
  client = pymongo.MongoClient(uri, retryWrites=True, serverSelectionTimeoutMS=500000)
30
+ db = client["MLB_Database"]
31
 
32
  gc = gspread.service_account_from_dict(credentials)
33