Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Feb 26, 2023
1 parent 27136f4 commit 44eb1de
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion social_core/backends/loginradius.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def request_access_token(self, *args, **kwargs):
return self.get_json(
params={"token": self.data.get("token"), "secret": self.setting("SECRET")},
*args,
**kwargs
**kwargs,
)

def user_data(self, access_token, *args, **kwargs):
Expand Down
2 changes: 1 addition & 1 deletion social_core/backends/untappd.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def auth_complete(self, *args, **kwargs):
response["response"]["access_token"],
response=response["response"],
*args,
**kwargs
**kwargs,
)

def get_user_details(self, response):
Expand Down
2 changes: 1 addition & 1 deletion social_core/pipeline/partial.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def wrapper(strategy, backend, pipeline_index, *args, **kwargs):
pipeline_index=pipeline_index,
current_partial=current_partial,
*args,
**kwargs
**kwargs,
)
or {}
)
Expand Down

0 comments on commit 44eb1de

Please sign in to comment.