LawsonE commited on
Commit
4b9f865
·
verified ·
1 Parent(s): f57bbff

modified calender id

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -24,7 +24,7 @@ def add_event_to_calendar(event_name: str, start: str, end: str) -> str:
24
  # Service account configuration
25
  SERVICE_ACCOUNT_FILE = "credentials.json" # Your service account JSON file
26
  SCOPES = ["https://www.googleapis.com/auth/calendar"]
27
- PERSONAL_EMAIL = '[email protected]'#os.environ['PERSONAL_EMAIL']
28
  CALENDAR_ID = PERSONAL_EMAIL # Or your specific calendar ID
29
 
30
 
 
24
  # Service account configuration
25
  SERVICE_ACCOUNT_FILE = "credentials.json" # Your service account JSON file
26
  SCOPES = ["https://www.googleapis.com/auth/calendar"]
27
+ PERSONAL_EMAIL = os.environ['PERSONAL_EMAIL']
28
  CALENDAR_ID = PERSONAL_EMAIL # Or your specific calendar ID
29
 
30