Skip to content

Commit be99875

Browse files
author
Chloe White
committed
function for google calendar api sync
1 parent 8206ab9 commit be99875

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

todo_list/todo.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
A simple To-Do List app skeleton using Tkinter.
44
Google Calendar API integration will be added later.
55
"""
6+
from logging import root
67
import tkinter as tk
78

89
def main():
@@ -37,4 +38,7 @@ def remove_task(task):
3738
remove_button.pack(pady=10)
3839
print("Add task function")
3940

40-
41+
42+
def sync_with_google_calendar():
43+
# Placeholder function for Google Calendar API integration
44+
print("Syncing with Google Calendar (placeholder)")

0 commit comments

Comments
 (0)