Skip to content

Commit

Permalink
Remove spurious variable assignment
Browse files Browse the repository at this point in the history
Remove a spurious variable assignment made with the return of
a tuple where the second value is not actually consumed.
  • Loading branch information
skoranda committed Apr 16, 2021
1 parent 527d48e commit 18ae110
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fence/resources/openid/cilogon_oauth2.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def get_auth_url(self):
"authorization_endpoint", "https://cilogon.org/authorize"
)

uri, state = self.session.create_authorization_url(
uri, _ = self.session.create_authorization_url(
authorization_endpoint, prompt="login"
)

Expand Down

0 comments on commit 18ae110

Please sign in to comment.