sort imports for other scripts
This commit is contained in:
parent
558f7be2d2
commit
63c50c2a31
4 changed files with 11 additions and 7 deletions
|
|
@ -1,12 +1,13 @@
|
|||
#!/usr/bin/python2
|
||||
|
||||
from __future__ import absolute_import
|
||||
from __future__ import print_function
|
||||
from __future__ import absolute_import, print_function
|
||||
|
||||
import ast
|
||||
import os
|
||||
import os.path
|
||||
import pprint
|
||||
import sys
|
||||
|
||||
from six.moves import cStringIO
|
||||
from six.moves.urllib.parse import quote
|
||||
|
||||
|
|
|
|||
|
|
@ -1,16 +1,16 @@
|
|||
#!/usr/bin/python2
|
||||
|
||||
from __future__ import absolute_import
|
||||
from __future__ import print_function
|
||||
from __future__ import absolute_import, print_function
|
||||
|
||||
import mimetypes
|
||||
import os
|
||||
import os.path
|
||||
import pprint
|
||||
import sys
|
||||
from wsgiref.simple_server import make_server
|
||||
from wsgiref.util import setup_testing_defaults
|
||||
|
||||
from six.moves.urllib.parse import quote
|
||||
from wsgiref.util import setup_testing_defaults
|
||||
from wsgiref.simple_server import make_server
|
||||
|
||||
CWD = os.getcwd()
|
||||
sys.path.insert(0, CWD)
|
||||
|
|
|
|||
2
runtests
2
runtests
|
|
@ -1,8 +1,8 @@
|
|||
#!/usr/bin/python2
|
||||
|
||||
from multiprocessing import Pool
|
||||
import subprocess
|
||||
import tempfile
|
||||
from multiprocessing import Pool
|
||||
|
||||
|
||||
def explode_ref(ref, dest):
|
||||
|
|
|
|||
3
setup.py
3
setup.py
|
|
@ -1,7 +1,10 @@
|
|||
from __future__ import absolute_import
|
||||
|
||||
import sys
|
||||
|
||||
from setuptools import setup
|
||||
|
||||
|
||||
def get_install_requires():
|
||||
# To install all build requires:
|
||||
# $ dnf install python-pip git krb5-devel gcc redhat-rpm-config \
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue