killwithabass commited on
Commit
9d77ac0
·
verified ·
1 Parent(s): 4ab13fc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -13,8 +13,8 @@ from supabase import create_client, Client
13
 
14
 
15
  # Initialize supabase
16
- url: str = 'SUPABASE_URL'
17
- key: str = 'SUPABASE_KEY'
18
  supabase: Client = create_client(url, key)
19
 
20
  # Initialize GSheet Connexion
 
13
 
14
 
15
  # Initialize supabase
16
+ url: str = os.getenv('SUPABASE_URL')
17
+ key: str = os.getenv('SUPABASE_KEY')
18
  supabase: Client = create_client(url, key)
19
 
20
  # Initialize GSheet Connexion