Code cleanup some small changes in the formatting.

This commit is contained in:
2017-11-07 06:52:55 +01:00
parent 34d327f183
commit 638ec96c25
2 changed files with 5 additions and 5 deletions

View File

@@ -5,10 +5,10 @@ from mahjong_ranking import models
from . import LOGGER, MIN_HANCHANS_FOR_LADDER
class DenormalizationUpdateMiddleware(object):
class DenormalizationUpdateMiddleware(object): # Ignore PyLintBear (R0903)
"""To recalculate everything in the queues at the end of a POST request."""
def process_response(self, request, response):
def process_response(self, request, response): # Ignore PyLintBear (R0201)
"""Check and process the recalculation queues on each POST request.
:param request: the django HttpRequest object