MilanM commited on
Commit
5276b15
·
verified ·
1 Parent(s): d5b3769

Update baked_in_credentials/creds.py

Browse files
Files changed (1) hide show
  1. baked_in_credentials/creds.py +2 -1
baked_in_credentials/creds.py CHANGED
@@ -1,6 +1,7 @@
 
1
  credentials = {
2
  "api_key": os.environ.get("WX_APIKEY"),
3
  "project_id": os.environ.get("WX_PROJECT_ID"),
4
  "space_id": os.environ.get("WX_SPACE_ID"),
5
- "region": os.environ.get("WX_REGION"),
6
  }
 
1
+ import os
2
  credentials = {
3
  "api_key": os.environ.get("WX_APIKEY"),
4
  "project_id": os.environ.get("WX_PROJECT_ID"),
5
  "space_id": os.environ.get("WX_SPACE_ID"),
6
+ "region": os.environ.get("WX_REGION")
7
  }