fix flake8
This commit is contained in:
parent
e7b6e78fe1
commit
edd2dbadc5
1 changed files with 5 additions and 3 deletions
|
|
@ -32,20 +32,22 @@ import hashlib
|
||||||
import logging
|
import logging
|
||||||
import os
|
import os
|
||||||
import re
|
import re
|
||||||
import six # needed for imported code
|
|
||||||
import subprocess
|
import subprocess
|
||||||
import sys
|
import sys
|
||||||
import tempfile
|
import tempfile
|
||||||
import threading
|
import threading
|
||||||
import time
|
import time
|
||||||
import traceback
|
import traceback
|
||||||
import zipfile
|
|
||||||
from optparse import OptionParser
|
|
||||||
import xmlrpc.client
|
import xmlrpc.client
|
||||||
# urllib is required by the SCM class which is substituted into this file
|
# urllib is required by the SCM class which is substituted into this file
|
||||||
# do not remove the import below
|
# do not remove the import below
|
||||||
import urllib # noqa: F401
|
import urllib # noqa: F401
|
||||||
|
import zipfile
|
||||||
from configparser import RawConfigParser
|
from configparser import RawConfigParser
|
||||||
|
from optparse import OptionParser
|
||||||
|
|
||||||
|
import six # noqa: F401, needed for imported code
|
||||||
|
|
||||||
|
|
||||||
MANAGER_PORT = 7000
|
MANAGER_PORT = 7000
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue