Skip to content

Commit b4f4354

Browse files
bschoeningdkropachev
authored andcommitted
remove unnecessary import __future__ (datastax#1156)
1 parent 3c996d4 commit b4f4354

File tree

5 files changed

+0
-5
lines changed

5 files changed

+0
-5
lines changed

cassandra/cluster.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
This module houses the main classes you will interact with,
1717
:class:`.Cluster` and :class:`.Session`.
1818
"""
19-
from __future__ import absolute_import
2019

2120
import atexit
2221
import datetime

cassandra/connection.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
from __future__ import absolute_import # to enable import io from stdlib
1615
from collections import defaultdict, deque
1716
import errno
1817
from functools import wraps, partial, total_ordering

cassandra/cqlengine/functions.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
from __future__ import division
1615
from datetime import datetime
1716

1817
from cassandra.cqlengine import UnicodeMixin, ValidationError

cassandra/cqltypes.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
# for example), these classes would be a good place to tack on
2828
# .from_cql_literal() and .as_cql_literal() classmethods (or whatever).
2929

30-
from __future__ import absolute_import # to enable import io from stdlib
3130
import ast
3231
from binascii import unhexlify
3332
import calendar

cassandra/protocol.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
from __future__ import absolute_import # to enable import io from stdlib
1615
from collections import namedtuple
1716
import logging
1817
import socket

0 commit comments

Comments
 (0)