Skip to content

Commit

Permalink
use new version import first
Browse files Browse the repository at this point in the history
  • Loading branch information
lixxu committed Jan 13, 2022
1 parent 7cd02e7 commit 4091b48
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sanic_jinja2/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
import functools

try:
from collections import Mapping
except ImportError:
from collections.abc import Mapping
except ImportError:
from collections import Mapping

from functools import partial

Expand All @@ -17,7 +17,7 @@
from sanic.response import HTTPResponse, html
from sanic.views import HTTPMethodView

__version__ = "2021.12.25"
__version__ = "2022.01.13"

CONTEXT_PROCESSORS = "context_processor"

Expand Down

0 comments on commit 4091b48

Please sign in to comment.