Skip to content

Commit

Permalink
chore: bump version to 0.43
Browse files Browse the repository at this point in the history
  • Loading branch information
mrf345 committed Oct 22, 2023
1 parent 7a2b59e commit 0652750
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion flask_minify/about.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.42"
__version__ = "0.43"
__doc__ = "Flask extension to minify html, css, js and less."
__license__ = "MIT"
__author__ = "Mohamed Feddad"
Expand Down
4 changes: 2 additions & 2 deletions flask_minify/parsers.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from functools import cache
from functools import lru_cache
from io import StringIO

from htmlmin import minify as minify_html
Expand Down Expand Up @@ -74,7 +74,7 @@ class GoParserMixin(ParserMixin):
go = True
media_type = "text/html"

@cache
@lru_cache
def get_all_go_options(self):
all_options = {}

Expand Down

0 comments on commit 0652750

Please sign in to comment.