Coding style overhaul for Python files (PEP8 conformant). Removed buggy csstidy pytho...
[redakcja.git] / apps / compress / filters / jsmin / __init__.py
index d226200..340bef2 100644 (file)
@@ -1,6 +1,8 @@
 from compress.filters.jsmin.jsmin import jsmin
 from compress.filter_base import FilterBase
 
+
 class JSMinFilter(FilterBase):
+
     def filter_js(self, js):
-        return jsmin(js)
\ No newline at end of file
+        return jsmin(js)