Skip to content

Commit b3143c5

Browse files
committed
Added encoding shebang
1 parent e859580 commit b3143c5

3 files changed

Lines changed: 11 additions & 2 deletions

File tree

ivona_api/__init__.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
1-
__version__ = '0.1.1'
1+
# -*- coding: utf-8 -*-
2+
from __future__ import unicode_literals
3+
4+
5+
__version__ = '0.1.1'

ivona_api/ivona_api.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1-
from urllib.parse import urljoin
1+
# -*- coding: utf-8 -*-
2+
from __future__ import unicode_literals
23

34
import requests
45
from requests_aws4auth import AWS4Auth
6+
from six.moves.urllib.parse import urljoin
57

68

79
IVONA_REGION_ENDPOINTS = {

ivona_api/test/test_ivona_api.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# -*- coding: utf-8 -*-
2+
from __future__ import unicode_literals
3+
14
import os
25
import tempfile
36
import filecmp

0 commit comments

Comments
 (0)