The following issues were found
docs/scripts/clirecording/record.py
1 issues
Line: 1
Column: 1
#!/usr/bin/env python3
from clidirector import CliDirector
import screenplays
if __name__ == '__main__':
director = CliDirector()
screenplays.record_user_interface(director)
Reported by Pylint.
test/mitmproxy/data/addonscripts/recorder/b.py
1 issues
Line: 1
Column: 1
import recorder
addons = [recorder.Recorder("b")]
Reported by Pylint.
mitmproxy/tools/console/__init__.py
1 issues
Line: 1
Column: 1
from mitmproxy.tools.console import master
__all__ = ["master"]
Reported by Pylint.
mitmproxy/tools/console/signals.py
1 issues
Line: 1
Column: 1
import blinker
# Show a status message in the action bar
status_message = blinker.Signal()
# Prompt for input
status_prompt = blinker.Signal()
Reported by Pylint.
test/mitmproxy/data/addonscripts/recorder/a.py
1 issues
Line: 1
Column: 1
import recorder
addons = [recorder.Recorder("a")]
Reported by Pylint.
mitmproxy/tools/web/__init__.py
1 issues
Line: 1
Column: 1
from mitmproxy.tools.web import master
__all__ = ["master"]
Reported by Pylint.
test/mitmproxy/data/servercert/generate.py
1 issues
Line: 1
Column: 1
import pathlib
import shutil
src = pathlib.Path("../../net/data/verificationcerts")
here = pathlib.Path(".")
shutil.copy(src / "9da13359.0", "9da13359.0")
for x in ["self-signed", "trusted-leaf", "trusted-root"]:
Reported by Pylint.
mitmproxy/net/http/status_codes.py
1 issues
Line: 1
Column: 1
CONTINUE = 100
SWITCHING = 101
OK = 200
CREATED = 201
ACCEPTED = 202
NON_AUTHORITATIVE_INFORMATION = 203
NO_CONTENT = 204
RESET_CONTENT = 205
PARTIAL_CONTENT = 206
Reported by Pylint.
test/mitmproxy/__init__.py
1 issues
Line: 1
Column: 1
# Silence third-party modules
import logging
logging.getLogger("hyper").setLevel(logging.WARNING)
logging.getLogger("requests").setLevel(logging.WARNING)
logging.getLogger("passlib").setLevel(logging.WARNING)
logging.getLogger("tornado").setLevel(logging.WARNING)
Reported by Pylint.
test/mitmproxy/test_ctx.py
1 issues
Line: 1
Column: 3
# TODO: write tests
Reported by Pylint.