Remove from __future__ imports

This commit is contained in:
Chris Mayo 2020-04-15 19:49:16 +01:00
parent f5e7f3a382
commit a83fbb56c0
8 changed files with 0 additions and 10 deletions

View file

@ -33,7 +33,6 @@
# https://github.com/albertz/py_better_exchook
from __future__ import print_function
import sys
import os

View file

@ -17,7 +17,6 @@
"""
Utility functions suitable for command line clients.
"""
from __future__ import print_function
import sys
import argparse
from . import checker, fileutil, strformat, plugins

View file

@ -35,7 +35,6 @@ def h ():
pass
"""
from __future__ import print_function
import warnings
import signal
import os

View file

@ -17,7 +17,6 @@
"""
Helpers for console output.
"""
from __future__ import print_function
import sys
import os
import time

View file

@ -7,7 +7,6 @@ Example usage:
modules = loader.get_package_modules('plugins')
plugins = loader.get_plugins(modules, PluginClass)
"""
from __future__ import print_function
import os
import sys
import zipfile

View file

@ -18,8 +18,6 @@
A HTML logger.
"""
from __future__ import absolute_import
from html import escape as html_escape
import os
import time

View file

@ -14,7 +14,6 @@
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
from __future__ import print_function
import re
import linecache
import time

View file

@ -14,8 +14,6 @@
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
from __future__ import print_function
import signal
import subprocess
import os