coding style

This commit is contained in:
Neil Johnson 2018-07-31 13:16:20 +01:00
parent 7d05406a07
commit df2235e7fa
7 changed files with 12 additions and 9 deletions

View file

@ -903,9 +903,10 @@ class AuthHandler(BaseHandler):
current_mau = self.store.count_monthly_users()
if current_mau >= self.hs.config.max_mau_value:
raise AuthError(
403, "MAU Limit Exceeded", errcode=Codes.MAU_LIMIT_EXCEEDED
403, "MAU Limit Exceeded", errcode=Codes.MAU_LIMIT_EXCEEDED
)
@attr.s
class MacaroonGenerator(object):