Skip to content

Commit

Permalink
docs: fix a tiny typo in method docstring (#1399)
Browse files Browse the repository at this point in the history
  • Loading branch information
shuuji3 authored Feb 27, 2024
1 parent fdd0594 commit 9e66f39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion oauth2_provider/views/token.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class AuthorizedTokensListView(LoginRequiredMixin, ListView):

def get_queryset(self):
"""
Show only user"s tokens
Show only user's tokens
"""
return super().get_queryset().select_related("application").filter(user=self.request.user)

Expand Down

0 comments on commit 9e66f39

Please sign in to comment.