mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-04-01 05:30:26 +00:00
Remove from __future__ imports
This commit is contained in:
parent
f5e7f3a382
commit
a83fbb56c0
8 changed files with 0 additions and 10 deletions
|
|
@ -33,7 +33,6 @@
|
|||
|
||||
# https://github.com/albertz/py_better_exchook
|
||||
|
||||
from __future__ import print_function
|
||||
import sys
|
||||
import os
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -35,7 +35,6 @@ def h ():
|
|||
pass
|
||||
|
||||
"""
|
||||
from __future__ import print_function
|
||||
import warnings
|
||||
import signal
|
||||
import os
|
||||
|
|
|
|||
|
|
@ -17,7 +17,6 @@
|
|||
"""
|
||||
Helpers for console output.
|
||||
"""
|
||||
from __future__ import print_function
|
||||
import sys
|
||||
import os
|
||||
import time
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -18,8 +18,6 @@
|
|||
A HTML logger.
|
||||
"""
|
||||
|
||||
from __future__ import absolute_import
|
||||
|
||||
from html import escape as html_escape
|
||||
import os
|
||||
import time
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue