From edd2dbadc537da95f80eb5871b544ec994d49904 Mon Sep 17 00:00:00 2001 From: Yu Ming Zhu Date: Fri, 13 Aug 2021 18:46:03 +0000 Subject: [PATCH] fix flake8 --- vm/kojikamid.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/vm/kojikamid.py b/vm/kojikamid.py index c74671b0..dba83a00 100755 --- a/vm/kojikamid.py +++ b/vm/kojikamid.py @@ -32,20 +32,22 @@ import hashlib import logging import os import re -import six # needed for imported code import subprocess import sys import tempfile import threading import time import traceback -import zipfile -from optparse import OptionParser import xmlrpc.client # urllib is required by the SCM class which is substituted into this file # do not remove the import below import urllib # noqa: F401 +import zipfile from configparser import RawConfigParser +from optparse import OptionParser + +import six # noqa: F401, needed for imported code + MANAGER_PORT = 7000