From b69a5536e2c18570c9b8c2b7d21fad123d1daec5 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Tue, 29 Oct 2019 00:05:47 -0400 Subject: [PATCH] PEP8 cleanups Signed-off-by: Roberto Rosario --- mayan/apps/common/log.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/mayan/apps/common/log.py b/mayan/apps/common/log.py index 453a134556..6aaaa44a1b 100644 --- a/mayan/apps/common/log.py +++ b/mayan/apps/common/log.py @@ -1,5 +1,5 @@ from __future__ import unicode_literals - + import logging from django.utils.termcolors import colorize @@ -20,4 +20,3 @@ class ColorFormatter(logging.Formatter): text=record.msg, **PALETTE.get(record.levelname, {}) ) return super(ColorFormatter, self).format(record) -