Improved formatting and separation in blocks
[imap-restore-mail] / warnings_handler.py
index bc6af31..2e28470 100644 (file)
@@ -13,10 +13,12 @@ class WarningsHandler(logging.Handler):
 
     def __init__(self):
         """Initialize a handler to count number of warnings."""
+
         logging.Handler.__init__(self)
         self.detected_problems = 0
 
     def emit(self, record):
         """Increase number of warnings found"""
+
         self.detected_problems += 1
         
\ No newline at end of file