Skip to content

Commit

Permalink
Remove DictCache, which is unused (#51)
Browse files Browse the repository at this point in the history
  • Loading branch information
kurtmckee authored Sep 24, 2024
1 parent c5fab0d commit 878e195
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions flask_compress/flask_compress.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,6 @@
from flask import after_this_request, current_app, request


class DictCache:

def __init__(self):
self.data = {}

def get(self, key):
return self.data.get(key)

def set(self, key, value):
self.data[key] = value


class Compress:
"""
The Compress object allows your application to use Flask-Compress.
Expand Down

0 comments on commit 878e195

Please sign in to comment.