Skip to content

Commit 5117033

Browse files
committed
Drop usage of unicode_literals in all modules
1 parent 016b0bf commit 5117033

File tree

3 files changed

+0
-3
lines changed

3 files changed

+0
-3
lines changed

bin/jwt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
#!/usr/bin/env python
22

33
from __future__ import print_function
4-
from __future__ import unicode_literals
54

65
import optparse
76
import jwt

jwt/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
Minimum implementation based on this spec:
55
http://self-issued.info/docs/draft-jones-json-web-token-01.html
66
"""
7-
from __future__ import unicode_literals
87

98
import base64
109
import binascii

tests/test_jwt.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
from __future__ import unicode_literals
21

32
import json
43
import sys

0 commit comments

Comments
 (0)