Skip to content

Commit

Permalink
Fix problem in the authorizer's call() method
Browse files Browse the repository at this point in the history
  • Loading branch information
kbolashev committed Aug 21, 2023
1 parent 60daab1 commit 039d425
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dagshub/auth/token_auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def __call__(self, request):
"""
# TODO: NEED TO COME UP WITH A WAY TO RENEGOTIATE HERE SOMEHOW
# PROBABLY NEED TO CHECK FOR requests' REQUEST HERE
self._token(request)
return self._token(request)


class TokenDeserializationError(Exception):
Expand Down

0 comments on commit 039d425

Please sign in to comment.