summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Hunt <dave.hunt@gmail.com>2018-06-18 16:30:37 +0100
committerDave Hunt <dave.hunt@gmail.com>2018-06-18 16:30:37 +0100
commit21cb2b0c4ea79e72e4550cdbb4597dd56a45082d (patch)
treeb3d5edf4ddbe1e1c47381133fc3eab3d3456ca5a
parent37784c170a423faa8a7970ece416c99b93692f79 (diff)
downloadblessings-21cb2b0c4ea79e72e4550cdbb4597dd56a45082d.tar.gz
Remove imports from __future__
-rw-r--r--blessings/__init__.py1
-rw-r--r--blessings/tests.py2
2 files changed, 0 insertions, 3 deletions
diff --git a/blessings/__init__.py b/blessings/__init__.py
index ebace02..388cece 100644
--- a/blessings/__init__.py
+++ b/blessings/__init__.py
@@ -1,7 +1,6 @@
"""A thin, practical wrapper around terminal coloring, styling, and
positioning"""
-from __future__ import absolute_import
from contextlib import contextmanager
import curses
from curses import setupterm, tigetnum, tigetstr, tparm
diff --git a/blessings/tests.py b/blessings/tests.py
index c51b36c..a03eb8d 100644
--- a/blessings/tests.py
+++ b/blessings/tests.py
@@ -9,8 +9,6 @@ All we require from the host machine is that a standard terminfo definition of
xterm-256color exists.
"""
-from __future__ import with_statement # Make 2.5-compatible
-from __future__ import absolute_import
from curses import tigetstr, tparm
from functools import partial
import sys