mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 00:01:36 +00:00
Removed unused imports
This commit is contained in:
parent
e9006ae199
commit
9abff4f0ac
@ -13,7 +13,6 @@
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
import sys
|
||||
import Queue, threading
|
||||
|
||||
should_exit = False
|
||||
|
@ -1,5 +1,5 @@
|
||||
import sys, os
|
||||
import flow, filt, utils, script
|
||||
import flow, filt, utils
|
||||
|
||||
class DumpError(Exception): pass
|
||||
|
||||
|
@ -5,7 +5,7 @@
|
||||
|
||||
Development started from Neil Schemenauer's munchy.py
|
||||
"""
|
||||
import sys, os, string, socket, select, time
|
||||
import sys, os, string, socket, time
|
||||
import shutil, tempfile, threading
|
||||
import optparse, SocketServer, ssl
|
||||
import utils, flow
|
||||
|
6
mitmdump
6
mitmdump
@ -15,10 +15,10 @@
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
import sys, os.path
|
||||
from libmproxy import proxy, dump, utils, cmdline
|
||||
import sys
|
||||
from libmproxy import proxy, dump, cmdline
|
||||
from libmproxy.version import VERSION
|
||||
from optparse import OptionParser, OptionGroup
|
||||
from optparse import OptionParser
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
|
@ -15,8 +15,8 @@
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
import sys, os.path
|
||||
from libmproxy import proxy, controller, console, utils, flow, cmdline
|
||||
import sys
|
||||
from libmproxy import proxy, console, cmdline
|
||||
from libmproxy.version import VERSION
|
||||
from optparse import OptionParser, OptionGroup
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user