Skip to content

Commit

Permalink
🔨 Fix positional argument
Browse files Browse the repository at this point in the history
  • Loading branch information
devmount committed Nov 25, 2024
1 parent bbd1371 commit 920c8c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/appointment/routes/schedule.py
Original file line number Diff line number Diff line change
Expand Up @@ -642,6 +642,6 @@ def delete_remote_event(uid, calendar, subscriber, db, redis, google_client):
con, _ = get_remote_connection(calendar, subscriber, db, redis, google_client)

try:
con.delete_event(uid)
con.delete_event(uid=uid)
except EventNotCreatedException:
raise EventCouldNotBeDeleted

0 comments on commit 920c8c4

Please sign in to comment.