minor fixes

This commit is contained in:
Maximilian Hils 2016-07-13 22:01:16 -07:00
parent ec6fbe9eb6
commit f84a23f11d
3 changed files with 3 additions and 3 deletions

View File

@ -7,7 +7,7 @@ import traceback
import click import click
from typing import Optional # noqa from typing import Optional # noqa
import typing import typing # noqa
from mitmproxy import contentviews from mitmproxy import contentviews
from mitmproxy import controller from mitmproxy import controller

View File

@ -31,7 +31,7 @@ class Options(options.Options):
stickyauth=None, # type: Optional[str] stickyauth=None, # type: Optional[str]
stream_large_bodies=None, # type: Optional[str] stream_large_bodies=None, # type: Optional[str]
verbosity=1, # type: int verbosity=1, # type: int
outfile=None, # type: Optional[str] outfile=None, # type: Tuple[str, str]
replay_ignore_content=False, # type: bool replay_ignore_content=False, # type: bool
replay_ignore_params=(), # type: Sequence[str] replay_ignore_params=(), # type: Sequence[str]
replay_ignore_payload_params=(), # type: Sequence[str] replay_ignore_payload_params=(), # type: Sequence[str]

View File

@ -7,7 +7,7 @@ import os.path
from mitmproxy.builtins import stream from mitmproxy.builtins import stream
from mitmproxy.flow import master, FlowReader from mitmproxy.flow import master, FlowReader
from mitmproxy.flow import state from mitmproxy.flow import state
from mitmproxy import options from mitmproxy.flow import options
class TestStream(mastertest.MasterTest): class TestStream(mastertest.MasterTest):