refactor: remove redundand parenthesis when return tuple

Signed-off-by: Leonidas Spyropoulos <artafinde@archlinux.org>
This commit is contained in:
Leonidas Spyropoulos 2022-10-27 15:34:52 +01:00
parent d793193fdf
commit 7e06823e58
No known key found for this signature in database
GPG key ID: 59E43E106B247368
11 changed files with 34 additions and 34 deletions

View file

@ -127,7 +127,7 @@ class BasicAuthBackend(AuthenticationBackend):
user.nonce = util.make_nonce()
user.authenticated = True
return (AuthCredentials(["authenticated"]), user)
return AuthCredentials(["authenticated"]), user
def _auth_required(auth_goal: bool = True):