Skip to content

Commit

Permalink
Merge pull request #76 from wbolster/issue-73
Browse files Browse the repository at this point in the history
Drop usage of unicode_literals in all modules
  • Loading branch information
jpadilla committed Jan 12, 2015
2 parents 016b0bf + 5117033 commit 6a0f184
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion bin/jwt
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#!/usr/bin/env python

from __future__ import print_function
from __future__ import unicode_literals

import optparse
import jwt
Expand Down
1 change: 0 additions & 1 deletion jwt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
Minimum implementation based on this spec:
http://self-issued.info/docs/draft-jones-json-web-token-01.html
"""
from __future__ import unicode_literals

import base64
import binascii
Expand Down
1 change: 0 additions & 1 deletion tests/test_jwt.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from __future__ import unicode_literals

import json
import sys
Expand Down

0 comments on commit 6a0f184

Please sign in to comment.