From d4314c64bb8c8ed6675e3707ebd2e02159910469 Mon Sep 17 00:00:00 2001 From: Carlos Meza Date: Sun, 25 Feb 2018 06:54:37 +0000 Subject: [PATCH] pylint W0235(useless-super-delegation) --- bootstrapvz/base/log.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bootstrapvz/base/log.py b/bootstrapvz/base/log.py index 5c9a441..ea6064e 100644 --- a/bootstrapvz/base/log.py +++ b/bootstrapvz/base/log.py @@ -100,5 +100,4 @@ class FileFormatter(SourceFormatter): """Formats log statements for output to file Currently this is just a stub """ - def format(self, record): - return super(FileFormatter, self).format(record) + pass