X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/7fdf8249c9c016e397edc3112184e74b0f3f9778..5b9ee3437b7fa98820eba7286abd524c3ede76e9:/wolnelektury/utils.py

diff --git a/wolnelektury/utils.py b/wolnelektury/utils.py
index e06fb1d87..0c256e5df 100644
--- a/wolnelektury/utils.py
+++ b/wolnelektury/utils.py
@@ -5,8 +5,6 @@
 import pytz
 from django.utils import timezone
 from django.conf import settings
-from pipeline.storage import GZIPMixin
-from pipeline.storage import PipelineCachedStorage
 
 tz = pytz.timezone(settings.TIME_ZONE)
 
@@ -17,6 +15,3 @@ def localtime_to_utc(localtime):
 
 def utc_for_js(dt):
     return dt.strftime('%Y/%m/%d %H:%M:%S UTC')
-
-class GzipPipelineCachedStorage(GZIPMixin, PipelineCachedStorage):
-    pass