feat(Packagers): Added some comments and started on the what if first time

This commit is contained in:
2024-12-07 11:24:09 -07:00
parent 3a53014d57
commit 3b46d56339
7 changed files with 117 additions and 13 deletions

View File

@ -70,7 +70,7 @@ def AppendAppointment(date, start_time, interviewee_name, interviewee_email):
with FileLock(lock_path): # Ensure process-safe access to the file
# Load workbook and select "Sheet1" for updating appointments
workbook = load_workbook(file_path)
sheet = workbook["Sheet1"]
sheet = workbook["Interview Timetable"]
df = pd.read_excel(file_path)
# Find and update the row that matches the provided date and start time