Fix shifting import lines around.

pull/129/head^2
Chris McCormick 2019-11-27 21:34:12 +08:00
rodzic c4c6847e1e
commit 3fcb8792a5
1 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -13,17 +13,17 @@ from collections import defaultdict, deque
from fcntl import fcntl, F_SETFL, F_GETFL from fcntl import fcntl, F_SETFL, F_GETFL
from glob import glob from glob import glob
from grp import getgrgid from grp import getgrgid
from pwd import getpwuid
from json import loads from json import loads
from multiprocessing import cpu_count from multiprocessing import cpu_count
from os import chmod, getgid, getuid, symlink, unlink, remove, stat, listdir, environ, makedirs, O_NONBLOCK
from os.path import abspath, basename, dirname, exists, getmtime, join, realpath, splitext, isdir from os.path import abspath, basename, dirname, exists, getmtime, join, realpath, splitext, isdir
from os import chmod, getgid, getuid, symlink, unlink, remove, stat, listdir, environ, makedirs, O_NONBLOCK
from re import sub from re import sub
from shutil import copyfile, rmtree, which from shutil import copyfile, rmtree, which
from sys import argv, stdin, stdout, stderr, version_info, exit, path as sys_path
from pwd import getpwuid
from socket import socket, AF_INET, SOCK_STREAM from socket import socket, AF_INET, SOCK_STREAM
from stat import S_IRUSR, S_IWUSR, S_IXUSR from stat import S_IRUSR, S_IWUSR, S_IXUSR
from subprocess import call, check_output, Popen, STDOUT from subprocess import call, check_output, Popen, STDOUT
from sys import argv, stdin, stdout, stderr, version_info, exit, path as sys_path
from tempfile import NamedTemporaryFile from tempfile import NamedTemporaryFile
from time import sleep from time import sleep
from traceback import format_exc from traceback import format_exc