AlanOC commited on
Commit
30d53ff
1 Parent(s): 0a15142

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -44,8 +44,8 @@ creds = ServiceAccountCredentials.from_json_keyfile_name('./boreal-matrix-401021
44
  # Authorize the clientsheet
45
  client = gspread.authorize(creds)
46
 
47
-
48
- sheet = client.open_by_url("Google_Sheet")
49
  worksheet = sheet.get_worksheet(0)
50
 
51
 
 
44
  # Authorize the clientsheet
45
  client = gspread.authorize(creds)
46
 
47
+ google_sheet_url = os.getenv("Google_Sheet")
48
+ sheet = client.open_by_url("google_sheet_url")
49
  worksheet = sheet.get_worksheet(0)
50
 
51