Skip to content
This repository has been archived by the owner on May 24, 2024. It is now read-only.

Commit

Permalink
Fix call
Browse files Browse the repository at this point in the history
  • Loading branch information
dkrizic committed May 22, 2024
1 parent 9a5aa1a commit 98befbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sync/sync.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ func Sync(ctx context.Context, az azure.Azure, gh github.GitHub) (err error) {
"login", a.login,
"email", a.email,
"name", a.displayName)
err = gh.DeleteUser(a.login)
err = gh.DeleteUser(ctx, a.login)
if err != nil {
return err
}
Expand Down

0 comments on commit 98befbc

Please sign in to comment.