The following issues were found

test/mitmproxy/data/addonscripts/recorder/error.py
1 issues
invalid syntax (<unknown>, line 5)
Error

Line: 5 Column: 9

              This file is intended to have syntax errors for test purposes
"""

impotr recorder # Intended Syntax Error

addons = [recorder.Recorder("e")]

            

Reported by Pylint.

test/mitmproxy/data/addonscripts/recorder/e.py
1 issues
Missing module docstring
Error

Line: 1 Column: 1

              import recorder

addons = [recorder.Recorder("e")]

            

Reported by Pylint.

test/mitmproxy/utils/test_bits.py
1 issues
TODO: write tests
Error

Line: 1 Column: 3

              # TODO: write tests

            

Reported by Pylint.

test/mitmproxy/test_exceptions.py
1 issues
TODO: write tests
Error

Line: 1 Column: 3

              # TODO: write tests

            

Reported by Pylint.

examples/addons/http-stream-simple.py
1 issues
Module name "http-stream-simple" doesn't conform to snake_case naming style
Error

Line: 1 Column: 1

              """
Select which responses should be streamed.

Enable response streaming for all HTTP flows.
This is equivalent to passing `--set stream_large_bodies=1` to mitmproxy.
"""


def responseheaders(flow):

            

Reported by Pylint.