Skip to content

Commit

Permalink
Fix py2 open issue
Browse files Browse the repository at this point in the history
  • Loading branch information
tammoippen committed Sep 25, 2018
1 parent c594b36 commit c323ac5
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions iso4217parse/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@

if _PY3:
unicode = str
else:
from io import open


Currency = namedtuple('Currency', [
Expand Down

0 comments on commit c323ac5

Please sign in to comment.