Skip to content

Commit ae0033b

Browse files
committed
Get rid of __future__ imports
1 parent 0fb3968 commit ae0033b

5 files changed

Lines changed: 0 additions & 9 deletions

File tree

laterpay/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77
http://docs.laterpay.net/
88
"""
99

10-
from __future__ import absolute_import, print_function
11-
1210
import logging
1311
import pkg_resources
1412
import random

laterpay/compat.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
# -*- coding: utf-8 -*-
2-
from __future__ import absolute_import, print_function, unicode_literals
32

43
import six
54

laterpay/signing.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
# -*- coding: utf-8 -*-
2-
from __future__ import absolute_import, print_function
3-
42
import hashlib
53
import hmac
64
import warnings

tests/test_client.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
#!/usr/bin/env python
22
# -*- coding: utf-8 -*-
3-
from __future__ import absolute_import, print_function
4-
53
import json
64
import unittest
75

tests/test_signing.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
#!/usr/bin/env python
22
# -*- coding: utf-8 -*-
3-
from __future__ import absolute_import, print_function
4-
53
import hashlib
64
import unittest
75
import warnings

0 commit comments

Comments
 (0)