From 21cb2b0c4ea79e72e4550cdbb4597dd56a45082d Mon Sep 17 00:00:00 2001 From: Dave Hunt Date: Mon, 18 Jun 2018 16:30:37 +0100 Subject: Remove imports from __future__ --- blessings/__init__.py | 1 - blessings/tests.py | 2 -- 2 files changed, 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 -- cgit v1.2.1