Skip to content

Commit

Permalink
fix: provide doc_ids as a list
Browse files Browse the repository at this point in the history
Fixes #138
  • Loading branch information
danstis committed Sep 29, 2023
1 parent 4e84f21 commit 4ae9250
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ado_asana_sync/sync/sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ def sync_project(app: App, project):
wi["title"],
_SYNC_THRESHOLD,
)
app.matches.remove(wi.doc_id)
app.matches.remove(doc_ids=[wi.doc_id])
continue

# Get the work item details from ADO.
Expand Down

0 comments on commit 4ae9250

Please sign in to comment.