Skip to content

Commit

Permalink
Merge f21351e into 467ea90
Browse files Browse the repository at this point in the history
  • Loading branch information
gber committed Aug 28, 2018
2 parents 467ea90 + f21351e commit 326e499
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions chevron/renderer.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# -*- coding: utf-8 -*-

try:
from collections.abc import Sequence, Iterator
except ImportError: # python 2
from collections import Sequence, Iterator
try:
from .tokenizer import tokenize
except (ValueError, SystemError): # python 2
Expand Down

0 comments on commit 326e499

Please sign in to comment.