Fix linting errors

This commit is contained in:
Neil Martinsen-Burrell 2023-04-04 14:59:04 -05:00
parent e4233870d6
commit 63979afe32
No known key found for this signature in database
GPG key ID: 6A3C818CC10D0184
3 changed files with 14 additions and 6 deletions

View file

@ -55,4 +55,6 @@ class User(AbstractUser):
# retrieving should not fail because of a missing user, but
# if it does fail, log the error so a new user can continue
# logging in
logger.warn("Failed to retrieve invitation %s", invitation, exc_info=True)
logger.warn(
"Failed to retrieve invitation %s", invitation, exc_info=True
)