Skip to content

Commit

Permalink
Remove useless tuple cast
Browse files Browse the repository at this point in the history
  • Loading branch information
dutrieuc committed Jan 22, 2025
1 parent a3c5bb6 commit 589c76d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion auth_saml/models/auth_saml_provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ def action_refresh_metadata_from_url(self):
provider_ids = tuple(providers_to_update.keys())
self.env.cr.execute(
"SELECT id FROM auth_saml_provider WHERE id in %s FOR UPDATE",
(tuple(provider_ids),),
(provider_ids,),
)
updated = False
for provider in providers:
Expand Down

0 comments on commit 589c76d

Please sign in to comment.