Cleanup extra quotes from IDEs (#6236)

This commit is contained in:
Andrew Morgan 2019-10-23 16:49:05 +01:00 committed by GitHub
parent e9a8c05bef
commit 92e88a71d3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 5 deletions

View file

@ -493,8 +493,7 @@ def _check_power_levels(event, auth_events):
new_level_too_big = new_level is not None and new_level > user_level
if old_level_too_big or new_level_too_big:
raise AuthError(
403,
"You don't have permission to add ops level greater " "than your own",
403, "You don't have permission to add ops level greater than your own"
)