Coding style overhaul for Python files (PEP8 conformant). Removed buggy csstidy pytho...
[redakcja.git] / apps / compress / filter_base.py
index 9b98531..3ce364f 100644 (file)
@@ -4,11 +4,13 @@ class FilterBase:
 
     def filter_css(self, css):
         raise NotImplementedError
+
     def filter_js(self, js):
         raise NotImplementedError
-        
+
+
 class FilterError(Exception):
     """
     This exception is raised when a filter fails
     """
-    pass
\ No newline at end of file
+    pass