Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Style] Incorporate wemake-python-styleguide #253

Open
1 of 3 tasks
webknjaz opened this issue Dec 3, 2019 · 25 comments
Open
1 of 3 tasks

[Style] Incorporate wemake-python-styleguide #253

webknjaz opened this issue Dec 3, 2019 · 25 comments
Labels
enhancement Improvement good first issue This is what we believe is newcomer-friendly, feel free to contribute! hacktoberfest-accepted DO's annual PR encouragement help wanted Somebody help us, please!

Comments

@webknjaz
Copy link
Member

webknjaz commented Dec 3, 2019

❓ I'm submitting a ...

  • 🐞 bug report
  • 🐣 feature request
  • ❓ question about the decisions made in the repository

🐞 Is your feature request related to a problem? Please describe.

The code style is not consistent across the project.

🐣 Describe the solution you'd like

Integrate a set of very linters to keep the style in a good shape of wemake-python-styleguide.

First, we need to create a legacy style baseline as per https://wemake-python-stylegui.de/en/latest/pages/usage/integrations/legacy.html and then gradually eliminate linter offenses.

This would be a great first issue for beginners.

We may need to adjust a few rules along the way, though.

πŸ“‹ Describe alternatives you've considered

N/A

πŸ“‹ Additional context

See also: https://wemake-python-stylegui.de/en/latest/pages/usage/integrations/flakehell.html#flakehell

@webknjaz webknjaz added enhancement Improvement hacktoberfest-accepted DO's annual PR encouragement help wanted Somebody help us, please! good first issue This is what we believe is newcomer-friendly, feel free to contribute! labels Dec 3, 2019
@webknjaz
Copy link
Member Author

webknjaz commented Dec 3, 2019

If somebody wants to contribute, here's what to do:

  1. Clone this repository.
  2. pip install wemake-python-styleguide
  3. flake8 .
  4. Choose some warning (just one offense code), fix it and send a PR.
  5. Repeat. Send a separate PR for each linter offense type.

@sobolevn
Copy link

Awesome news! Good to know that you find my project useful! πŸš€
Any required help from my side?

@webknjaz
Copy link
Member Author

@sobolevn thanks for the kind offer! I think the only thing we need is more free time to fully implement the style. So we probably just need more PRs with adjustments.

On the second thought, we should probably generate a flakehell baseline and add wemake-python-styleguide @ https://github.com/cherrypy/cheroot/blob/85a190f/.pre-commit-config.yaml#L17 already.

@webknjaz
Copy link
Member Author

@sobolevn I tried following https://wemake-python-stylegui.de/en/latest/pages/usage/integrations/flakehell.html but none of flakehell baseline/flakehell lint output anything and both return success (code 0). When I just run flake8, it outputs a number of violations and the return code is 1.

Any pointers?

@sobolevn
Copy link

sobolevn commented Dec 28, 2019

Try flakehell baseline > .flakehell_baseline
And then add

[tool.flakehell]
baseline = ".flakehell_baseline"

into pyproject.toml

It should work afterwards, if not - then it is a bug in flakehell

@webknjaz
Copy link
Member Author

@sobolevn that's the problem: flakehell baseline doesn't print anything to stdout and redirecting it to a file just produces an empty file.

@sobolevn
Copy link

@webknjaz can you please open a new bug report to flakehell? That's a bug 😞

@webknjaz
Copy link
Member Author

@sobolevn I've discovered that it supports -vv arg and it got more interesting.

$ flakehell lint -vv
flake8                    MainProcess    102 DEBUG    Added a None logging handler to logger root at flake8
flake8.options.config     MainProcess    104 DEBUG    Found local configuration files: ['~/src/github/cherrypy/cheroot/setup.cfg', '~/src/github/cherrypy/cheroot/tox.ini']
flake8.plugins.manager    MainProcess    104 INFO     Loading entry-points for "flake8.extension".
flake8.plugins.manager    MainProcess    122 DEBUG    Loaded [Plugin(name="C90", entry_point="EntryPoint('C90', 'mccabe', 'McCabeChecker', Distribution('mccabe', '0.6.1'))")] for plugin "C90".
flake8.plugins.manager    MainProcess    122 DEBUG    Loaded [Plugin(name="F", entry_point="EntryPoint('F', 'flake8.plugins.pyflakes', 'FlakesChecker', Distribution('flake8', '3.7.9'))")] for plugin "F".
flake8.plugins.manager    MainProcess    122 DEBUG    Loaded [Plugin(name="pycodestyle.ambiguous_identifier", entry_point="EntryPoint('pycodestyle.ambiguous_identifier', 'pycodestyle', 'ambiguous_identifier', Distribution('flake8', '3.7.9'))")] for plugin "pycodestyle.ambiguous_identifier".
flake8.plugins.manager    MainProcess    122 DEBUG    Loaded [Plugin(name="pycodestyle.bare_except", entry_point="EntryPoint('pycodestyle.bare_except', 'pycodestyle', 'bare_except', Distribution('flake8', '3.7.9'))")] for plugin "pycodestyle.bare_except".
flake8.plugins.manager    MainProcess    122 DEBUG    Loaded [Plugin(name="pycodestyle.blank_lines", entry_point="EntryPoint('pycodestyle.blank_lines', 'pycodestyle', 'blank_lines', Distribution('flake8', '3.7.9'))")] for plugin "pycodestyle.blank_lines".
flake8.plugins.manager    MainProcess    122 DEBUG    Loaded [Plugin(name="pycodestyle.break_after_binary_operator", entry_point="EntryPoint('pycodestyle.break_after_binary_operator', 'pycodestyle', 'break_after_binary_operator', Distribution('flake8', '3.7.9'))")] for plugin "pycodestyle.break_after_binary_operator".
flake8.plugins.manager    MainProcess    122 DEBUG    Loaded [Plugin(name="pycodestyle.break_before_binary_operator", entry_point="EntryPoint('pycodestyle.break_before_binary_operator', 'pycodestyle', 'break_before_binary_operator', Distribution('flake8', '3.7.9'))")] for plugin "pycodestyle.break_before_binary_operator".
flake8.plugins.manager    MainProcess    123 DEBUG    Loaded [Plugin(name="pycodestyle.comparison_negative", entry_point="EntryPoint('pycodestyle.comparison_negative', 'pycodestyle', 'comparison_negative', Distribution('flake8', '3.7.9'))")] for plugin "pycodestyle.comparison_negative".
flake8.plugins.manager    MainProcess    123 DEBUG    Loaded [Plugin(name="pycodestyle.comparison_to_singleton", entry_point="EntryPoint('pycodestyle.comparison_to_singleton', 'pycodestyle', 'comparison_to_singleton', Distribution('flake8', '3.7.9'))")] for plugin "pycodestyle.comparison_to_singleton".
flake8.plugins.manager    MainProcess    123 DEBUG    Loaded [Plugin(name="pycodestyle.comparison_type", entry_point="EntryPoint('pycodestyle.comparison_type', 'pycodestyle', 'comparison_type', Distribution('flake8', '3.7.9'))")] for plugin "pycodestyle.comparison_type".
flake8.plugins.manager    MainProcess    123 DEBUG    Loaded [Plugin(name="pycodestyle.compound_statements", entry_point="EntryPoint('pycodestyle.compound_statements', 'pycodestyle', 'compound_statements', Distribution('flake8', '3.7.9'))")] for plugin "pycodestyle.compound_statements".
flake8.plugins.manager    MainProcess    123 DEBUG    Loaded [Plugin(name="pycodestyle.continued_indentation", entry_point="EntryPoint('pycodestyle.continued_indentation', 'pycodestyle', 'continued_indentation', Distribution('flake8', '3.7.9'))")] for plugin "pycodestyle.continued_indentation".
flake8.plugins.manager    MainProcess    123 DEBUG    Loaded [Plugin(name="pycodestyle.explicit_line_join", entry_point="EntryPoint('pycodestyle.explicit_line_join', 'pycodestyle', 'explicit_line_join', Distribution('flake8', '3.7.9'))")] for plugin "pycodestyle.explicit_line_join".
flake8.plugins.manager    MainProcess    123 DEBUG    Loaded [Plugin(name="pycodestyle.extraneous_whitespace", entry_point="EntryPoint('pycodestyle.extraneous_whitespace', 'pycodestyle', 'extraneous_whitespace', Distribution('flake8', '3.7.9'))")] for plugin "pycodestyle.extraneous_whitespace".
flake8.plugins.manager    MainProcess    123 DEBUG    Loaded [Plugin(name="pycodestyle.imports_on_separate_lines", entry_point="EntryPoint('pycodestyle.imports_on_separate_lines', 'pycodestyle', 'imports_on_separate_lines', Distribution('flake8', '3.7.9'))")] for plugin "pycodestyle.imports_on_separate_lines".
flake8.plugins.manager    MainProcess    123 DEBUG    Loaded [Plugin(name="pycodestyle.indentation", entry_point="EntryPoint('pycodestyle.indentation', 'pycodestyle', 'indentation', Distribution('flake8', '3.7.9'))")] for plugin "pycodestyle.indentation".
flake8.plugins.manager    MainProcess    123 DEBUG    Loaded [Plugin(name="pycodestyle.maximum_doc_length", entry_point="EntryPoint('pycodestyle.maximum_doc_length', 'pycodestyle', 'maximum_doc_length', Distribution('flake8', '3.7.9'))")] for plugin "pycodestyle.maximum_doc_length".
flake8.plugins.manager    MainProcess    123 DEBUG    Loaded [Plugin(name="pycodestyle.maximum_line_length", entry_point="EntryPoint('pycodestyle.maximum_line_length', 'pycodestyle', 'maximum_line_length', Distribution('flake8', '3.7.9'))")] for plugin "pycodestyle.maximum_line_length".
flake8.plugins.manager    MainProcess    123 DEBUG    Loaded [Plugin(name="pycodestyle.missing_whitespace", entry_point="EntryPoint('pycodestyle.missing_whitespace', 'pycodestyle', 'missing_whitespace', Distribution('flake8', '3.7.9'))")] for plugin "pycodestyle.missing_whitespace".
flake8.plugins.manager    MainProcess    123 DEBUG    Loaded [Plugin(name="pycodestyle.missing_whitespace_after_import_keyword", entry_point="EntryPoint('pycodestyle.missing_whitespace_after_import_keyword', 'pycodestyle', 'missing_whitespace_after_import_keyword', Distribution('flake8', '3.7.9'))")] for plugin "pycodestyle.missing_whitespace_after_import_keyword".
flake8.plugins.manager    MainProcess    123 DEBUG    Loaded [Plugin(name="pycodestyle.missing_whitespace_around_operator", entry_point="EntryPoint('pycodestyle.missing_whitespace_around_operator', 'pycodestyle', 'missing_whitespace_around_operator', Distribution('flake8', '3.7.9'))")] for plugin "pycodestyle.missing_whitespace_around_operator".
flake8.plugins.manager    MainProcess    123 DEBUG    Loaded [Plugin(name="pycodestyle.module_imports_on_top_of_file", entry_point="EntryPoint('pycodestyle.module_imports_on_top_of_file', 'pycodestyle', 'module_imports_on_top_of_file', Distribution('flake8', '3.7.9'))")] for plugin "pycodestyle.module_imports_on_top_of_file".
flake8.plugins.manager    MainProcess    123 DEBUG    Loaded [Plugin(name="pycodestyle.python_3000_async_await_keywords", entry_point="EntryPoint('pycodestyle.python_3000_async_await_keywords', 'pycodestyle', 'python_3000_async_await_keywords', Distribution('flake8', '3.7.9'))")] for plugin "pycodestyle.python_3000_async_await_keywords".
flake8.plugins.manager    MainProcess    123 DEBUG    Loaded [Plugin(name="pycodestyle.python_3000_backticks", entry_point="EntryPoint('pycodestyle.python_3000_backticks', 'pycodestyle', 'python_3000_backticks', Distribution('flake8', '3.7.9'))")] for plugin "pycodestyle.python_3000_backticks".
flake8.plugins.manager    MainProcess    123 DEBUG    Loaded [Plugin(name="pycodestyle.python_3000_has_key", entry_point="EntryPoint('pycodestyle.python_3000_has_key', 'pycodestyle', 'python_3000_has_key', Distribution('flake8', '3.7.9'))")] for plugin "pycodestyle.python_3000_has_key".
flake8.plugins.manager    MainProcess    123 DEBUG    Loaded [Plugin(name="pycodestyle.python_3000_invalid_escape_sequence", entry_point="EntryPoint('pycodestyle.python_3000_invalid_escape_sequence', 'pycodestyle', 'python_3000_invalid_escape_sequence', Distribution('flake8', '3.7.9'))")] for plugin "pycodestyle.python_3000_invalid_escape_sequence".
flake8.plugins.manager    MainProcess    123 DEBUG    Loaded [Plugin(name="pycodestyle.python_3000_not_equal", entry_point="EntryPoint('pycodestyle.python_3000_not_equal', 'pycodestyle', 'python_3000_not_equal', Distribution('flake8', '3.7.9'))")] for plugin "pycodestyle.python_3000_not_equal".
flake8.plugins.manager    MainProcess    123 DEBUG    Loaded [Plugin(name="pycodestyle.python_3000_raise_comma", entry_point="EntryPoint('pycodestyle.python_3000_raise_comma', 'pycodestyle', 'python_3000_raise_comma', Distribution('flake8', '3.7.9'))")] for plugin "pycodestyle.python_3000_raise_comma".
flake8.plugins.manager    MainProcess    123 DEBUG    Loaded [Plugin(name="pycodestyle.tabs_obsolete", entry_point="EntryPoint('pycodestyle.tabs_obsolete', 'pycodestyle', 'tabs_obsolete', Distribution('flake8', '3.7.9'))")] for plugin "pycodestyle.tabs_obsolete".
flake8.plugins.manager    MainProcess    123 DEBUG    Loaded [Plugin(name="pycodestyle.tabs_or_spaces", entry_point="EntryPoint('pycodestyle.tabs_or_spaces', 'pycodestyle', 'tabs_or_spaces', Distribution('flake8', '3.7.9'))")] for plugin "pycodestyle.tabs_or_spaces".
flake8.plugins.manager    MainProcess    123 DEBUG    Loaded [Plugin(name="pycodestyle.trailing_blank_lines", entry_point="EntryPoint('pycodestyle.trailing_blank_lines', 'pycodestyle', 'trailing_blank_lines', Distribution('flake8', '3.7.9'))")] for plugin "pycodestyle.trailing_blank_lines".
flake8.plugins.manager    MainProcess    123 DEBUG    Loaded [Plugin(name="pycodestyle.trailing_whitespace", entry_point="EntryPoint('pycodestyle.trailing_whitespace', 'pycodestyle', 'trailing_whitespace', Distribution('flake8', '3.7.9'))")] for plugin "pycodestyle.trailing_whitespace".
flake8.plugins.manager    MainProcess    123 DEBUG    Loaded [Plugin(name="pycodestyle.whitespace_around_comma", entry_point="EntryPoint('pycodestyle.whitespace_around_comma', 'pycodestyle', 'whitespace_around_comma', Distribution('flake8', '3.7.9'))")] for plugin "pycodestyle.whitespace_around_comma".
flake8.plugins.manager    MainProcess    123 DEBUG    Loaded [Plugin(name="pycodestyle.whitespace_around_keywords", entry_point="EntryPoint('pycodestyle.whitespace_around_keywords', 'pycodestyle', 'whitespace_around_keywords', Distribution('flake8', '3.7.9'))")] for plugin "pycodestyle.whitespace_around_keywords".
flake8.plugins.manager    MainProcess    123 DEBUG    Loaded [Plugin(name="pycodestyle.whitespace_around_named_parameter_equals", entry_point="EntryPoint('pycodestyle.whitespace_around_named_parameter_equals', 'pycodestyle', 'whitespace_around_named_parameter_equals', Distribution('flake8', '3.7.9'))")] for plugin "pycodestyle.whitespace_around_named_parameter_equals".
flake8.plugins.manager    MainProcess    124 DEBUG    Loaded [Plugin(name="pycodestyle.whitespace_around_operator", entry_point="EntryPoint('pycodestyle.whitespace_around_operator', 'pycodestyle', 'whitespace_around_operator', Distribution('flake8', '3.7.9'))")] for plugin "pycodestyle.whitespace_around_operator".
flake8.plugins.manager    MainProcess    124 DEBUG    Loaded [Plugin(name="pycodestyle.whitespace_before_comment", entry_point="EntryPoint('pycodestyle.whitespace_before_comment', 'pycodestyle', 'whitespace_before_comment', Distribution('flake8', '3.7.9'))")] for plugin "pycodestyle.whitespace_before_comment".
flake8.plugins.manager    MainProcess    124 DEBUG    Loaded [Plugin(name="pycodestyle.whitespace_before_parameters", entry_point="EntryPoint('pycodestyle.whitespace_before_parameters', 'pycodestyle', 'whitespace_before_parameters', Distribution('flake8', '3.7.9'))")] for plugin "pycodestyle.whitespace_before_parameters".
flake8.plugins.manager    MainProcess    124 DEBUG    Loaded [Plugin(name="N4", entry_point="EntryPoint('N4', 'flake8_broken_line', 'check_line_breaks', Distribution('flake8_broken_line', '0.1.1'))")] for plugin "N4".
flake8.plugins.manager    MainProcess    124 DEBUG    Loaded [Plugin(name="C10", entry_point="EntryPoint('C10', 'flake8_coding', 'CodingChecker', Distribution('flake8_coding', '1.3.2'))")] for plugin "C10".
flake8.plugins.manager    MainProcess    124 DEBUG    Loaded [Plugin(name="C81", entry_point="EntryPoint('C81', 'flake8_commas', 'CommaChecker', Distribution('flake8_commas', '2.0.0'))")] for plugin "C81".
flake8.plugins.manager    MainProcess    124 DEBUG    Loaded [Plugin(name="E8", entry_point="EntryPoint('E8', 'flake8_eradicate', 'Checker', Distribution('flake8_eradicate', '0.2.3'))")] for plugin "E8".
flake8.plugins.manager    MainProcess    124 DEBUG    Loaded [Plugin(name="A00", entry_point="EntryPoint('A00', 'flake8_builtins', 'BuiltinsChecker', Distribution('flake8_builtins', '1.4.1'))")] for plugin "A00".
flake8.plugins.manager    MainProcess    124 DEBUG    Loaded [Plugin(name="D", entry_point="EntryPoint('D', 'flake8_docstrings', 'pep257Checker', Distribution('flake8_docstrings', '1.5.0'))")] for plugin "D".
flake8.plugins.manager    MainProcess    124 DEBUG    Loaded [Plugin(name="P", entry_point="EntryPoint('P', 'flake8_string_format', 'StringFormatChecker', Distribution('flake8_string_format', '0.2.3'))")] for plugin "P".
flake8.plugins.manager    MainProcess    124 DEBUG    Loaded [Plugin(name="B", entry_point="EntryPoint('B', 'bugbear', 'BugBearChecker', Distribution('flake8_bugbear', '19.8.0'))")] for plugin "B".
flake8.plugins.manager    MainProcess    124 DEBUG    Loaded [Plugin(name="N8", entry_point="EntryPoint('N8', 'pep8ext_naming', 'NamingChecker', Distribution('pep8_naming', '0.9.1'))")] for plugin "N8".
flake8.plugins.manager    MainProcess    124 DEBUG    Loaded [Plugin(name="I00", entry_point="EntryPoint('I00', 'flake8_isort', 'Flake8Isort', Distribution('flake8_isort', '2.7.0'))")] for plugin "I00".
flake8.plugins.manager    MainProcess    124 DEBUG    Loaded [Plugin(name="C4", entry_point="EntryPoint('C4', 'flake8_comprehensions', 'ComprehensionChecker', Distribution('flake8_comprehensions', '3.1.4'))")] for plugin "C4".
flake8.plugins.manager    MainProcess    124 DEBUG    Loaded [Plugin(name="S001", entry_point="EntryPoint('S001', 'flake8_pep3101', 'Flake8Pep3101', Distribution('flake8_pep3101', '1.2.1'))")] for plugin "S001".
flake8.plugins.manager    MainProcess    124 DEBUG    Loaded [Plugin(name="R70", entry_point="EntryPoint('R70', 'radon.complexity', 'Flake8Checker', Distribution('radon', '2.4.0'))")] for plugin "R70".
flake8.plugins.manager    MainProcess    124 DEBUG    Loaded [Plugin(name="DAR", entry_point="EntryPoint('DAR', 'darglint.flake8_entry', 'DarglintChecker', Distribution('darglint', '1.1.0'))")] for plugin "DAR".
flake8.plugins.manager    MainProcess    124 DEBUG    Loaded [Plugin(name="EXE00", entry_point="EntryPoint('EXE00', 'flake8_executable', 'ExecutableChecker', Distribution('flake8_executable', '2.0.3'))")] for plugin "EXE00".
flake8.plugins.manager    MainProcess    125 DEBUG    Loaded [Plugin(name="WPS", entry_point="EntryPoint('WPS', 'wemake_python_styleguide.checker', 'Checker', Distribution('wemake_python_styleguide', '0.13.1'))")] for plugin "WPS".
flake8.plugins.manager    MainProcess    125 DEBUG    Loaded [Plugin(name="pylint", entry_point="EntryPoint('pylint', 'flakehell.plugins', 'PyLintChecker', Distribution('flakehell', '0.3.3'))")] for plugin "pylint".
flake8.plugins.manager    MainProcess    125 DEBUG    Loaded [Plugin(name="Q0", entry_point="EntryPoint('Q0', 'flake8_quotes', 'QuoteChecker', Distribution('flake8_quotes', '2.1.1-py3.7'))")] for plugin "Q0".
flake8.plugins.manager    MainProcess    125 DEBUG    Loaded [Plugin(name="T100", entry_point="EntryPoint('T100', 'flake8_debugger', 'DebuggerChecker', Distribution('flake8_debugger', '3.2.1-py3.7'))")] for plugin "T100".
flake8.plugins.manager    MainProcess    125 DEBUG    Loaded [Plugin(name="TAE002", entry_point="EntryPoint('TAE002', 'flake8_annotations_complexity.checker', 'AnnotationsComplexityChecker', Distribution('flake8_annotations_complexity', '0.0.2-py3.7'))")] for plugin "TAE002".
flake8.plugins.manager    MainProcess    125 DEBUG    Loaded [Plugin(name="T00", entry_point="EntryPoint('T00', 'flake8_print', 'PrintChecker', Distribution('flake8_print', '3.1.4-py3.7'))")] for plugin "T00".
flake8.plugins.manager    MainProcess    125 DEBUG    Loaded [Plugin(name="S", entry_point="EntryPoint('S', 'flake8_bandit', 'BanditTester', Distribution('flake8_bandit', '2.1.2-py3.7'))")] for plugin "S".
flake8.plugins.manager    MainProcess    125 DEBUG    Loaded [Plugin(name="logging-format", entry_point="EntryPoint('logging-format', 'logging_format.api', 'LoggingFormatValidator', Distribution('flake8_logging_format', '0.6.0-py3.7'))")] for plugin "logging-format".
flake8.plugins.manager    MainProcess    125 DEBUG    Loaded [Plugin(name="RST", entry_point="EntryPoint('RST', 'flake8_rst_docstrings', 'reStructuredTextChecker', Distribution('flake8_rst_docstrings', '0.0.12-py3.7'))")] for plugin "RST".
flake8.plugins.manager    MainProcess    125 INFO     Loading entry-points for "flake8.report".
flake8.plugins.manager    MainProcess    139 DEBUG    Loaded Plugin(name="default", entry_point="EntryPoint('default', 'flake8.formatting.default', 'Default', Distribution('flake8', '3.7.9'))") for plugin "default".
flake8.plugins.manager    MainProcess    139 DEBUG    Loaded Plugin(name="pylint", entry_point="EntryPoint('pylint', 'flake8.formatting.default', 'Pylint', Distribution('flake8', '3.7.9'))") for plugin "pylint".
flake8.plugins.manager    MainProcess    139 DEBUG    Loaded Plugin(name="quiet-filename", entry_point="EntryPoint('quiet-filename', 'flake8.formatting.default', 'FilenameOnly', Distribution('flake8', '3.7.9'))") for plugin "quiet-filename".
flake8.plugins.manager    MainProcess    139 DEBUG    Loaded Plugin(name="quiet-nothing", entry_point="EntryPoint('quiet-nothing', 'flake8.formatting.default', 'Nothing', Distribution('flake8', '3.7.9'))") for plugin "quiet-nothing".
flake8.plugins.manager    MainProcess    139 DEBUG    Loaded Plugin(name="wemake", entry_point="EntryPoint('wemake', 'wemake_python_styleguide.formatter', 'WemakeFormatter', Distribution('wemake_python_styleguide', '0.13.1'))") for plugin "wemake".
flake8.plugins.manager    MainProcess    139 DEBUG    Loaded Plugin(name="baseline", entry_point="EntryPoint('baseline', 'flakehell.formatters', 'BaseLineFormatter', Distribution('flakehell', '0.3.3'))") for plugin "baseline".
flake8.plugins.manager    MainProcess    139 DEBUG    Loaded Plugin(name="colored", entry_point="EntryPoint('colored', 'flakehell.formatters', 'ColoredFormatter', Distribution('flakehell', '0.3.3'))") for plugin "colored".
flake8.plugins.manager    MainProcess    139 DEBUG    Loaded Plugin(name="grouped", entry_point="EntryPoint('grouped', 'flakehell.formatters', 'GroupedFormatter', Distribution('flakehell', '0.3.3'))") for plugin "grouped".
flake8.plugins.manager    MainProcess    139 DEBUG    Loaded Plugin(name="json", entry_point="EntryPoint('json', 'flakehell.formatters', 'JSONFormatter', Distribution('flakehell', '0.3.3'))") for plugin "json".
flake8.plugins.manager    MainProcess    139 DEBUG    Loaded Plugin(name="stat", entry_point="EntryPoint('stat', 'flakehell.formatters', 'StatFormatter', Distribution('flakehell', '0.3.3'))") for plugin "stat".
flake8.plugins.manager    MainProcess    139 INFO     Loading plugin "C90" from entry-point.
flake8.plugins.manager    MainProcess    140 INFO     Loading plugin "F" from entry-point.
flake8.plugins.manager    MainProcess    150 INFO     Loading plugin "pycodestyle.ambiguous_identifier" from entry-point.
flake8.plugins.manager    MainProcess    155 INFO     Loading plugin "pycodestyle.bare_except" from entry-point.
flake8.plugins.manager    MainProcess    155 INFO     Loading plugin "pycodestyle.blank_lines" from entry-point.
flake8.plugins.manager    MainProcess    155 INFO     Loading plugin "pycodestyle.break_after_binary_operator" from entry-point.
flake8.plugins.manager    MainProcess    155 INFO     Loading plugin "pycodestyle.break_before_binary_operator" from entry-point.
flake8.plugins.manager    MainProcess    155 INFO     Loading plugin "pycodestyle.comparison_negative" from entry-point.
flake8.plugins.manager    MainProcess    155 INFO     Loading plugin "pycodestyle.comparison_to_singleton" from entry-point.
flake8.plugins.manager    MainProcess    155 INFO     Loading plugin "pycodestyle.comparison_type" from entry-point.
flake8.plugins.manager    MainProcess    155 INFO     Loading plugin "pycodestyle.compound_statements" from entry-point.
flake8.plugins.manager    MainProcess    155 INFO     Loading plugin "pycodestyle.continued_indentation" from entry-point.
flake8.plugins.manager    MainProcess    156 INFO     Loading plugin "pycodestyle.explicit_line_join" from entry-point.
flake8.plugins.manager    MainProcess    156 INFO     Loading plugin "pycodestyle.extraneous_whitespace" from entry-point.
flake8.plugins.manager    MainProcess    156 INFO     Loading plugin "pycodestyle.imports_on_separate_lines" from entry-point.
flake8.plugins.manager    MainProcess    156 INFO     Loading plugin "pycodestyle.indentation" from entry-point.
flake8.plugins.manager    MainProcess    156 INFO     Loading plugin "pycodestyle.maximum_doc_length" from entry-point.
flake8.plugins.manager    MainProcess    156 INFO     Loading plugin "pycodestyle.maximum_line_length" from entry-point.
flake8.plugins.manager    MainProcess    156 INFO     Loading plugin "pycodestyle.missing_whitespace" from entry-point.
flake8.plugins.manager    MainProcess    156 INFO     Loading plugin "pycodestyle.missing_whitespace_after_import_keyword" from entry-point.
flake8.plugins.manager    MainProcess    156 INFO     Loading plugin "pycodestyle.missing_whitespace_around_operator" from entry-point.
flake8.plugins.manager    MainProcess    156 INFO     Loading plugin "pycodestyle.module_imports_on_top_of_file" from entry-point.
flake8.plugins.manager    MainProcess    156 INFO     Loading plugin "pycodestyle.python_3000_async_await_keywords" from entry-point.
flake8.plugins.manager    MainProcess    156 INFO     Loading plugin "pycodestyle.python_3000_backticks" from entry-point.
flake8.plugins.manager    MainProcess    156 INFO     Loading plugin "pycodestyle.python_3000_has_key" from entry-point.
flake8.plugins.manager    MainProcess    156 INFO     Loading plugin "pycodestyle.python_3000_invalid_escape_sequence" from entry-point.
flake8.plugins.manager    MainProcess    156 INFO     Loading plugin "pycodestyle.python_3000_not_equal" from entry-point.
flake8.plugins.manager    MainProcess    156 INFO     Loading plugin "pycodestyle.python_3000_raise_comma" from entry-point.
flake8.plugins.manager    MainProcess    156 INFO     Loading plugin "pycodestyle.tabs_obsolete" from entry-point.
flake8.plugins.manager    MainProcess    156 INFO     Loading plugin "pycodestyle.tabs_or_spaces" from entry-point.
flake8.plugins.manager    MainProcess    156 INFO     Loading plugin "pycodestyle.trailing_blank_lines" from entry-point.
flake8.plugins.manager    MainProcess    156 INFO     Loading plugin "pycodestyle.trailing_whitespace" from entry-point.
flake8.plugins.manager    MainProcess    156 INFO     Loading plugin "pycodestyle.whitespace_around_comma" from entry-point.
flake8.plugins.manager    MainProcess    157 INFO     Loading plugin "pycodestyle.whitespace_around_keywords" from entry-point.
flake8.plugins.manager    MainProcess    157 INFO     Loading plugin "pycodestyle.whitespace_around_named_parameter_equals" from entry-point.
flake8.plugins.manager    MainProcess    157 INFO     Loading plugin "pycodestyle.whitespace_around_operator" from entry-point.
flake8.plugins.manager    MainProcess    157 INFO     Loading plugin "pycodestyle.whitespace_before_comment" from entry-point.
flake8.plugins.manager    MainProcess    157 INFO     Loading plugin "pycodestyle.whitespace_before_parameters" from entry-point.
flake8.plugins.manager    MainProcess    157 INFO     Loading plugin "N4" from entry-point.
flake8.plugins.manager    MainProcess    233 INFO     Loading plugin "C10" from entry-point.
flake8.plugins.manager    MainProcess    234 INFO     Loading plugin "C81" from entry-point.
flake8.plugins.manager    MainProcess    235 INFO     Loading plugin "E8" from entry-point.
flake8.plugins.manager    MainProcess    243 INFO     Loading plugin "A00" from entry-point.
flake8.plugins.manager    MainProcess    244 INFO     Loading plugin "D" from entry-point.
flake8.plugins.manager    MainProcess    276 INFO     Loading plugin "P" from entry-point.
flake8.plugins.manager    MainProcess    276 INFO     Loading plugin "B" from entry-point.
flake8.plugins.manager    MainProcess    278 INFO     Loading plugin "N8" from entry-point.
flake8.plugins.manager    MainProcess    279 INFO     Loading plugin "I00" from entry-point.
flake8.plugins.manager    MainProcess    288 INFO     Loading plugin "C4" from entry-point.
flake8.plugins.manager    MainProcess    302 INFO     Loading plugin "S001" from entry-point.
flake8.plugins.manager    MainProcess    302 INFO     Loading plugin "R70" from entry-point.
flake8.plugins.manager    MainProcess    303 INFO     Loading plugin "DAR" from entry-point.
flake8.plugins.manager    MainProcess    313 INFO     Loading plugin "EXE00" from entry-point.
flake8.plugins.manager    MainProcess    314 INFO     Loading plugin "WPS" from entry-point.
flake8.plugins.manager    MainProcess    362 INFO     Loading plugin "pylint" from entry-point.
flake8.plugins.manager    MainProcess    489 INFO     Loading plugin "Q0" from entry-point.
flake8.plugins.manager    MainProcess    489 INFO     Loading plugin "T100" from entry-point.
flake8.plugins.manager    MainProcess    489 INFO     Loading plugin "TAE002" from entry-point.
flake8.plugins.manager    MainProcess    490 INFO     Loading plugin "T00" from entry-point.
flake8.plugins.manager    MainProcess    490 INFO     Loading plugin "S" from entry-point.
flake8.plugins.manager    MainProcess    528 INFO     Loading plugin "logging-format" from entry-point.
flake8.plugins.manager    MainProcess    528 INFO     Loading plugin "RST" from entry-point.
flake8.plugins.manager    MainProcess    537 INFO     Loading plugin "default" from entry-point.
flake8.plugins.manager    MainProcess    537 INFO     Loading plugin "pylint" from entry-point.
flake8.plugins.manager    MainProcess    537 INFO     Loading plugin "quiet-filename" from entry-point.
flake8.plugins.manager    MainProcess    537 INFO     Loading plugin "quiet-nothing" from entry-point.
flake8.plugins.manager    MainProcess    537 INFO     Loading plugin "wemake" from entry-point.
flake8.plugins.manager    MainProcess    537 INFO     Loading plugin "baseline" from entry-point.
flake8.plugins.manager    MainProcess    537 INFO     Loading plugin "colored" from entry-point.
flake8.plugins.manager    MainProcess    537 INFO     Loading plugin "grouped" from entry-point.
flake8.plugins.manager    MainProcess    538 INFO     Loading plugin "json" from entry-point.
flake8.plugins.manager    MainProcess    538 INFO     Loading plugin "stat" from entry-point.
flake8.plugins.manager    MainProcess    538 DEBUG    Registering options from plugin "C90" on OptionManager <flake8.options.manager.OptionManager object at 0x7f39c245cfd0>
flake8.options.manager    MainProcess    538 DEBUG    Registered option "Option(None, --max-complexity, action=store, default=-1, dest=max_complexity, type=int, callback=None, help=McCabe complexity threshold, callback=None, callback_args=None, callback_kwargs=None, metavar=None)".
flake8.options.manager    MainProcess    538 DEBUG    Removing ['C90'] from the default ignore list
flake8.options.manager    MainProcess    538 DEBUG    Attempted to remove C90 from default ignore but it was not a member of the list.
flake8.options.manager    MainProcess    538 DEBUG    Extending default select list with ['C90']
flake8.plugins.manager    MainProcess    538 DEBUG    Registering options from plugin "F" on OptionManager <flake8.options.manager.OptionManager object at 0x7f39c245cfd0>
flake8.options.manager    MainProcess    538 DEBUG    Registered option "Option(None, --builtins, action=None, default=None, dest=builtins, type=None, callback=None, help=define more built-ins, comma separated, callback=None, callback_args=None, callback_kwargs=None, metavar=None)".
flake8.options.manager    MainProcess    538 DEBUG    Registered option "Option(None, --doctests, action=store_true, default=False, dest=doctests, type=None, callback=None, help=check syntax of the doctests, callback=None, callback_args=None, callback_kwargs=None, metavar=None)".
flake8.options.manager    MainProcess    538 DEBUG    Registered option "Option(None, --include-in-doctest, action=None, default=, dest=include_in_doctest, type=string, callback=None, help=Run doctests only on these files, callback=None, callback_args=None, callback_kwargs=None, metavar=None)".
flake8.options.manager    MainProcess    538 DEBUG    Registered option "Option(None, --exclude-from-doctest, action=None, default=, dest=exclude_from_doctest, type=string, callback=None, help=Skip these files when running doctests, callback=None, callback_args=None, callback_kwargs=None, metavar=None)".
flake8.options.manager    MainProcess    538 DEBUG    Removing ['F'] from the default ignore list
flake8.options.manager    MainProcess    538 DEBUG    Attempted to remove F from default ignore but it was not a member of the list.
flake8.options.manager    MainProcess    538 DEBUG    Extending default select list with ['F']
flake8.options.manager    MainProcess    539 DEBUG    Removing ['N4'] from the default ignore list
flake8.options.manager    MainProcess    539 DEBUG    Attempted to remove N4 from default ignore but it was not a member of the list.
flake8.options.manager    MainProcess    539 DEBUG    Extending default select list with ['N4']
flake8.plugins.manager    MainProcess    539 DEBUG    Registering options from plugin "C10" on OptionManager <flake8.options.manager.OptionManager object at 0x7f39c245cfd0>
flake8.options.manager    MainProcess    539 DEBUG    Registered option "Option(None, --accept-encodings, action=store, default=latin-1, utf-8, dest=accept_encodings, type=None, callback=None, help=Acceptable source code encodings for `coding:` magic comment, callback=None, callback_args=None, callback_kwargs=None, metavar=None)".
flake8.options.manager    MainProcess    539 DEBUG    Registered option "Option(None, --no-accept-encodings, action=store_true, default=None, dest=no_accept_encodings, type=None, callback=None, help=Warn for files containing a `coding:` magic comment, callback=None, callback_args=None, callback_kwargs=None, metavar=None)".
flake8.options.manager    MainProcess    539 DEBUG    Removing ['C10'] from the default ignore list
flake8.options.manager    MainProcess    539 DEBUG    Attempted to remove C10 from default ignore but it was not a member of the list.
flake8.options.manager    MainProcess    539 DEBUG    Extending default select list with ['C10']
flake8.options.manager    MainProcess    539 DEBUG    Removing ['C81'] from the default ignore list
flake8.options.manager    MainProcess    539 DEBUG    Attempted to remove C81 from default ignore but it was not a member of the list.
flake8.options.manager    MainProcess    539 DEBUG    Extending default select list with ['C81']
flake8.plugins.manager    MainProcess    539 DEBUG    Registering options from plugin "E8" on OptionManager <flake8.options.manager.OptionManager object at 0x7f39c245cfd0>
flake8.options.manager    MainProcess    539 DEBUG    Registered option "Option(None, --eradicate-aggressive, action=store_true, default=False, dest=eradicate_aggressive, type=None, callback=None, help=Enables aggressive mode for eradicate; this may result in false positives, callback=None, callback_args=None, callback_kwargs=None, metavar=None)".
flake8.options.manager    MainProcess    539 DEBUG    Removing ['E8'] from the default ignore list
flake8.options.manager    MainProcess    539 DEBUG    Attempted to remove E8 from default ignore but it was not a member of the list.
flake8.options.manager    MainProcess    539 DEBUG    Extending default select list with ['E8']
flake8.options.manager    MainProcess    539 DEBUG    Removing ['A00'] from the default ignore list
flake8.options.manager    MainProcess    539 DEBUG    Attempted to remove A00 from default ignore but it was not a member of the list.
flake8.options.manager    MainProcess    539 DEBUG    Extending default select list with ['A00']
flake8.plugins.manager    MainProcess    539 DEBUG    Registering options from plugin "D" on OptionManager <flake8.options.manager.OptionManager object at 0x7f39c245cfd0>
flake8.options.manager    MainProcess    539 DEBUG    Registered option "Option(None, --docstring-convention, action=store, default=pep257, dest=docstring_convention, type=None, callback=None, help=pydocstyle docstring convention, default 'pep257'. Use the special value 'all' to enable all codes (note: some codes are conflicting so you'll need to then exclude those)., callback=None, callback_args=None, callback_kwargs=None, metavar=None)".
flake8.options.manager    MainProcess    539 DEBUG    Registered option "Option(None, --ignore-decorators, action=store, default=None, dest=ignore_decorators, type=None, callback=None, help=pydocstyle ignore-decorators regular expression, default None. Ignore any functions or methods that are decorated by a function with a name fitting this regular expression. The default is not ignore any decorated functions. , callback=None, callback_args=None, callback_kwargs=None, metavar=None)".
flake8.options.manager    MainProcess    540 DEBUG    Removing ['D'] from the default ignore list
flake8.options.manager    MainProcess    540 DEBUG    Attempted to remove D from default ignore but it was not a member of the list.
flake8.options.manager    MainProcess    540 DEBUG    Extending default select list with ['D']
flake8.plugins.manager    MainProcess    540 DEBUG    Registering options from plugin "P" on OptionManager <flake8.options.manager.OptionManager object at 0x7f39c245cfd0>
flake8.options.manager    MainProcess    540 DEBUG    Removing ['P'] from the default ignore list
flake8.options.manager    MainProcess    540 DEBUG    Attempted to remove P from default ignore but it was not a member of the list.
flake8.options.manager    MainProcess    540 DEBUG    Extending default select list with ['P']
flake8.plugins.manager    MainProcess    540 DEBUG    Registering options from plugin "B" on OptionManager <flake8.options.manager.OptionManager object at 0x7f39c245cfd0>
flake8.options.manager    MainProcess    540 DEBUG    Extending default ignore list with ['B901', 'B902', 'B903', 'B950']
flake8.options.manager    MainProcess    540 DEBUG    Removing ['B'] from the default ignore list
flake8.options.manager    MainProcess    540 DEBUG    Attempted to remove B from default ignore but it was not a member of the list.
flake8.options.manager    MainProcess    540 DEBUG    Extending default select list with ['B']
flake8.plugins.manager    MainProcess    540 DEBUG    Registering options from plugin "N8" on OptionManager <flake8.options.manager.OptionManager object at 0x7f39c245cfd0>
flake8.options.manager    MainProcess    540 DEBUG    Registered option "Option(None, --ignore-names, action=store, default=['setUp', 'tearDown', 'setUpClass', 'tearDownClass', 'setUpTestData', 'failureException', 'longMessage', 'maxDiff'], dest=ignore_names, type=string, callback=None, help=List of names the pep8-naming plugin should ignore. (Defaults to %default), callback=None, callback_args=None, callback_kwargs=None, metavar=None)".
flake8.options.manager    MainProcess    540 DEBUG    Registered option "Option(None, --classmethod-decorators, action=store, default=['classmethod'], dest=classmethod_decorators, type=string, callback=None, help=List of method decorators pep8-naming plugin should consider classmethods (Defaults to %default), callback=None, callback_args=None, callback_kwargs=None, metavar=None)".
flake8.options.manager    MainProcess    540 DEBUG    Registered option "Option(None, --staticmethod-decorators, action=store, default=['staticmethod'], dest=staticmethod_decorators, type=string, callback=None, help=List of method decorators pep8-naming plugin should consider staticmethods (Defaults to %default), callback=None, callback_args=None, callback_kwargs=None, metavar=None)".
flake8.options.manager    MainProcess    540 DEBUG    Removing ['N8'] from the default ignore list
flake8.options.manager    MainProcess    540 DEBUG    Attempted to remove N8 from default ignore but it was not a member of the list.
flake8.options.manager    MainProcess    540 DEBUG    Extending default select list with ['N8']
flake8.plugins.manager    MainProcess    540 DEBUG    Registering options from plugin "I00" on OptionManager <flake8.options.manager.OptionManager object at 0x7f39c245cfd0>
flake8.options.manager    MainProcess    540 DEBUG    Registered option "Option(None, --no-isort-config, action=store_true, default=None, dest=no_isort_config, type=None, callback=None, help=Do not require explicit configuration to be found, callback=None, callback_args=None, callback_kwargs=None, metavar=None)".
flake8.options.manager    MainProcess    540 DEBUG    Registered option "Option(None, --isort-show-traceback, action=store_true, default=None, dest=isort_show_traceback, type=None, callback=None, help=Show full traceback with diff from isort, callback=None, callback_args=None, callback_kwargs=None, metavar=None)".
flake8.options.manager    MainProcess    540 DEBUG    Removing ['I00'] from the default ignore list
flake8.options.manager    MainProcess    540 DEBUG    Attempted to remove I00 from default ignore but it was not a member of the list.
flake8.options.manager    MainProcess    540 DEBUG    Extending default select list with ['I00']
flake8.options.manager    MainProcess    540 DEBUG    Removing ['C4'] from the default ignore list
flake8.options.manager    MainProcess    540 DEBUG    Attempted to remove C4 from default ignore but it was not a member of the list.
flake8.options.manager    MainProcess    541 DEBUG    Extending default select list with ['C4']
flake8.options.manager    MainProcess    541 DEBUG    Removing ['S001'] from the default ignore list
flake8.options.manager    MainProcess    541 DEBUG    Attempted to remove S001 from default ignore but it was not a member of the list.
flake8.options.manager    MainProcess    541 DEBUG    Extending default select list with ['S001']
flake8.plugins.manager    MainProcess    541 DEBUG    Registering options from plugin "R70" on OptionManager <flake8.options.manager.OptionManager object at 0x7f39c245cfd0>
flake8.options.manager    MainProcess    541 DEBUG    Registered option "Option(None, --radon-max-cc, action=store, default=-1, dest=radon_max_cc, type=int, callback=None, help=Radon complexity threshold, callback=None, callback_args=None, callback_kwargs=None, metavar=None)".
flake8.options.manager    MainProcess    541 DEBUG    Registered option "Option(None, --radon-no-assert, action=store_true, default=False, dest=no_assert, type=None, callback=None, help=Radon will ignore assert statements, callback=None, callback_args=None, callback_kwargs=None, metavar=None)".
flake8.options.manager    MainProcess    541 DEBUG    Registered option "Option(None, --radon-show-closures, action=store_true, default=False, dest=show_closures, type=None, callback=None, help=Add closures/inner classes to the output, callback=None, callback_args=None, callback_kwargs=None, metavar=None)".
flake8.options.manager    MainProcess    541 DEBUG    Removing ['R70'] from the default ignore list
flake8.options.manager    MainProcess    541 DEBUG    Attempted to remove R70 from default ignore but it was not a member of the list.
flake8.options.manager    MainProcess    541 DEBUG    Extending default select list with ['R70']
flake8.options.manager    MainProcess    541 DEBUG    Removing ['DAR'] from the default ignore list
flake8.options.manager    MainProcess    541 DEBUG    Attempted to remove DAR from default ignore but it was not a member of the list.
flake8.options.manager    MainProcess    541 DEBUG    Extending default select list with ['DAR']
flake8.options.manager    MainProcess    541 DEBUG    Removing ['EXE00'] from the default ignore list
flake8.options.manager    MainProcess    541 DEBUG    Attempted to remove EXE00 from default ignore but it was not a member of the list.
flake8.options.manager    MainProcess    541 DEBUG    Extending default select list with ['EXE00']
flake8.plugins.manager    MainProcess    541 DEBUG    Registering options from plugin "WPS" on OptionManager <flake8.options.manager.OptionManager object at 0x7f39c245cfd0>
flake8.options.manager    MainProcess    541 DEBUG    Registered option "Option(None, --min-name-length, action=store, default=2, dest=min_name_length, type=int, callback=None, help=Minimum required length of variable and module names. Defaults to: %default, callback=None, callback_args=None, callback_kwargs=None, metavar=None)".
flake8.options.manager    MainProcess    541 DEBUG    Registered option "Option(None, --max-name-length, action=store, default=45, dest=max_name_length, type=int, callback=None, help=Maximum possible length of the variable and module names. Defaults to: %default, callback=None, callback_args=None, callback_kwargs=None, metavar=None)".
flake8.options.manager    MainProcess    541 DEBUG    Registered option "Option(None, --i-control-code, action=store_true, default=True, dest=i_control_code, type=None, callback=None, help=Whether you control ones who use your code. Defaults to: %default, callback=None, callback_args=None, callback_kwargs=None, metavar=None)".
flake8.options.manager    MainProcess    542 DEBUG    Registered option "Option(None, --i-dont-control-code, action=store_false, default=True, dest=i_control_code, type=None, callback=None, help=Whether you control ones who use your code. Defaults to: %default, callback=None, callback_args=None, callback_kwargs=None, metavar=None)".
flake8.options.manager    MainProcess    542 DEBUG    Registered option "Option(None, --max-noqa-comments, action=store, default=10, dest=max_noqa_comments, type=int, callback=None, help=Maximum amount of `noqa` comments per module. Defaults to: %default, callback=None, callback_args=None, callback_kwargs=None, metavar=None)".
flake8.options.manager    MainProcess    542 DEBUG    Registered option "Option(None, --nested-classes-whitelist, action=store, default=frozenset({'Params', 'Meta'}), dest=nested_classes_whitelist, type=string, callback=None, help=List of nested classes names we allow to use. Defaults to: %default, callback=None, callback_args=None, callback_kwargs=None, metavar=None)".
flake8.options.manager    MainProcess    542 DEBUG    Registered option "Option(None, --max-returns, action=store, default=5, dest=max_returns, type=int, callback=None, help=Maximum allowed number of return statements in one function. Defaults to: %default, callback=None, callback_args=None, callback_kwargs=None, metavar=None)".
flake8.options.manager    MainProcess    542 DEBUG    Registered option "Option(None, --max-local-variables, action=store, default=5, dest=max_local_variables, type=int, callback=None, help=Maximum allowed number of local variables in one function. Defaults to: %default, callback=None, callback_args=None, callback_kwargs=None, metavar=None)".
flake8.options.manager    MainProcess    542 DEBUG    Registered option "Option(None, --max-expressions, action=store, default=9, dest=max_expressions, type=int, callback=None, help=Maximum allowed number of expressions in one function. Defaults to: %default, callback=None, callback_args=None, callback_kwargs=None, metavar=None)".
flake8.options.manager    MainProcess    542 DEBUG    Registered option "Option(None, --max-arguments, action=store, default=5, dest=max_arguments, type=int, callback=None, help=Maximum allowed number of arguments in one function. Defaults to: %default, callback=None, callback_args=None, callback_kwargs=None, metavar=None)".
flake8.options.manager    MainProcess    542 DEBUG    Registered option "Option(None, --max-module-members, action=store, default=7, dest=max_module_members, type=int, callback=None, help=Maximum number of classes and functions in a single module. Defaults to: %default, callback=None, callback_args=None, callback_kwargs=None, metavar=None)".
flake8.options.manager    MainProcess    542 DEBUG    Registered option "Option(None, --max-methods, action=store, default=7, dest=max_methods, type=int, callback=None, help=Maximum number of methods in a single class. Defaults to: %default, callback=None, callback_args=None, callback_kwargs=None, metavar=None)".
flake8.options.manager    MainProcess    542 DEBUG    Registered option "Option(None, --max-line-complexity, action=store, default=14, dest=max_line_complexity, type=int, callback=None, help=Maximum line complexity, measured in `ast` nodes. Defaults to: %default, callback=None, callback_args=None, callback_kwargs=None, metavar=None)".
flake8.options.manager    MainProcess    542 DEBUG    Registered option "Option(None, --max-jones-score, action=store, default=12, dest=max_jones_score, type=int, callback=None, help=Maximum median module complexity, based on sum of lines. Defaults to: %default, callback=None, callback_args=None, callback_kwargs=None, metavar=None)".
flake8.options.manager    MainProcess    542 DEBUG    Registered option "Option(None, --max-imports, action=store, default=12, dest=max_imports, type=int, callback=None, help=Maximum number of imports in a single module. Defaults to: %default, callback=None, callback_args=None, callback_kwargs=None, metavar=None)".
flake8.options.manager    MainProcess    542 DEBUG    Registered option "Option(None, --max-imported-names, action=store, default=50, dest=max_imported_names, type=int, callback=None, help=Maximum number of imported names in a single module. Defaults to: %default, callback=None, callback_args=None, callback_kwargs=None, metavar=None)".
flake8.options.manager    MainProcess    543 DEBUG    Registered option "Option(None, --max-base-classes, action=store, default=3, dest=max_base_classes, type=int, callback=None, help=Maximum number of base classes. Defaults to: %default, callback=None, callback_args=None, callback_kwargs=None, metavar=None)".
flake8.options.manager    MainProcess    543 DEBUG    Registered option "Option(None, --max-decorators, action=store, default=5, dest=max_decorators, type=int, callback=None, help=Maximum number of decorators. Defaults to: %default, callback=None, callback_args=None, callback_kwargs=None, metavar=None)".
flake8.options.manager    MainProcess    543 DEBUG    Registered option "Option(None, --max-string-usages, action=store, default=3, dest=max_string_usages, type=int, callback=None, help=Maximum number of string constant usages. Defaults to: %default, callback=None, callback_args=None, callback_kwargs=None, metavar=None)".
flake8.options.manager    MainProcess    543 DEBUG    Registered option "Option(None, --max-awaits, action=store, default=5, dest=max_awaits, type=int, callback=None, help=Maximum allowed number of await expressions in one function. Defaults to: %default, callback=None, callback_args=None, callback_kwargs=None, metavar=None)".
flake8.options.manager    MainProcess    543 DEBUG    Registered option "Option(None, --max-try-body-length, action=store, default=1, dest=max_try_body_length, type=int, callback=None, help=Maximum amount of try block node body length. Defaults to: %default, callback=None, callback_args=None, callback_kwargs=None, metavar=None)".
flake8.options.manager    MainProcess    543 DEBUG    Registered option "Option(None, --max-module-expressions, action=store, default=7, dest=max_module_expressions, type=int, callback=None, help=Maximum amount of expression usages in a module. Defaults to: %default, callback=None, callback_args=None, callback_kwargs=None, metavar=None)".
flake8.options.manager    MainProcess    543 DEBUG    Registered option "Option(None, --max-function-expressions, action=store, default=4, dest=max_function_expressions, type=int, callback=None, help=Maximum amount of expression usages in a function or method. Defaults to: %default, callback=None, callback_args=None, callback_kwargs=None, metavar=None)".
flake8.options.manager    MainProcess    543 DEBUG    Registered option "Option(None, --max-asserts, action=store, default=5, dest=max_asserts, type=int, callback=None, help=Maximum allowed number of assert statements in one function. Defaults to: %default, callback=None, callback_args=None, callback_kwargs=None, metavar=None)".
flake8.options.manager    MainProcess    543 DEBUG    Registered option "Option(None, --max-access-level, action=store, default=4, dest=max_access_level, type=int, callback=None, help=Maximum number of access level in an expression. Defaults to: %default, callback=None, callback_args=None, callback_kwargs=None, metavar=None)".
flake8.options.manager    MainProcess    543 DEBUG    Registered option "Option(None, --max-attributes, action=store, default=6, dest=max_attributes, type=int, callback=None, help=Maximum number of public instance attributes. Defaults to: %default, callback=None, callback_args=None, callback_kwargs=None, metavar=None)".
flake8.options.manager    MainProcess    543 DEBUG    Registered option "Option(None, --max-cognitive-score, action=store, default=12, dest=max_cognitive_score, type=int, callback=None, help=Maximum amount of cognitive complexity per function. Defaults to: %default, callback=None, callback_args=None, callback_kwargs=None, metavar=None)".
flake8.options.manager    MainProcess    543 DEBUG    Registered option "Option(None, --max-cognitive-average, action=store, default=8, dest=max_cognitive_average, type=int, callback=None, help=Maximum amount of average cognitive complexity per module. Defaults to: %default, callback=None, callback_args=None, callback_kwargs=None, metavar=None)".
flake8.options.manager    MainProcess    544 DEBUG    Registered option "Option(None, --max-call-level, action=store, default=3, dest=max_call_level, type=int, callback=None, help=Maximum number of call chains. Defaults to: %default, callback=None, callback_args=None, callback_kwargs=None, metavar=None)".
flake8.options.manager    MainProcess    544 DEBUG    Removing ['WPS'] from the default ignore list
flake8.options.manager    MainProcess    544 DEBUG    Attempted to remove WPS from default ignore but it was not a member of the list.
flake8.options.manager    MainProcess    544 DEBUG    Extending default select list with ['WPS']
flake8.options.manager    MainProcess    544 DEBUG    Removing ['pylint'] from the default ignore list
flake8.options.manager    MainProcess    544 DEBUG    Attempted to remove pylint from default ignore but it was not a member of the list.
flake8.options.manager    MainProcess    544 DEBUG    Extending default select list with ['pylint']
flake8.plugins.manager    MainProcess    544 DEBUG    Registering options from plugin "Q0" on OptionManager <flake8.options.manager.OptionManager object at 0x7f39c245cfd0>
flake8.options.manager    MainProcess    544 DEBUG    Registered option "Option(None, --quotes, action=store, default=None, dest=quotes, type=choice, callback=None, help=Deprecated alias for `--inline-quotes`, callback=None, callback_args=None, callback_kwargs=None, metavar=None)".
flake8.options.manager    MainProcess    544 DEBUG    Registered option "Option(None, --inline-quotes, action=store, default=', dest=inline_quotes, type=choice, callback=None, help=Quote to expect in all files (default: '), callback=None, callback_args=None, callback_kwargs=None, metavar=None)".
flake8.options.manager    MainProcess    544 DEBUG    Registered option "Option(None, --multiline-quotes, action=store, default=None, dest=multiline_quotes, type=choice, callback=None, help=Quote to expect in all files (default: """), callback=None, callback_args=None, callback_kwargs=None, metavar=None)".
flake8.options.manager    MainProcess    544 DEBUG    Registered option "Option(None, --docstring-quotes, action=store, default=None, dest=docstring_quotes, type=choice, callback=None, help=Quote to expect in all files (default: """), callback=None, callback_args=None, callback_kwargs=None, metavar=None)".
flake8.options.manager    MainProcess    544 DEBUG    Registered option "Option(None, --avoid-escape, action=store_true, default=None, dest=avoid_escape, type=None, callback=None, help=Avoiding escaping same quotes in inline strings (enabled by default), callback=None, callback_args=None, callback_kwargs=None, metavar=None)".
flake8.options.manager    MainProcess    544 DEBUG    Registered option "Option(None, --no-avoid-escape, action=store_false, default=None, dest=avoid_escape, type=None, callback=None, help=Disable avoiding escaping same quotes in inline strings, callback=None, callback_args=None, callback_kwargs=None, metavar=None)".
flake8.options.manager    MainProcess    544 DEBUG    Removing ['Q0'] from the default ignore list
flake8.options.manager    MainProcess    544 DEBUG    Attempted to remove Q0 from default ignore but it was not a member of the list.
flake8.options.manager    MainProcess    544 DEBUG    Extending default select list with ['Q0']
flake8.options.manager    MainProcess    544 DEBUG    Removing ['T100'] from the default ignore list
flake8.options.manager    MainProcess    544 DEBUG    Attempted to remove T100 from default ignore but it was not a member of the list.
flake8.options.manager    MainProcess    544 DEBUG    Extending default select list with ['T100']
flake8.plugins.manager    MainProcess    544 DEBUG    Registering options from plugin "TAE002" on OptionManager <flake8.options.manager.OptionManager object at 0x7f39c245cfd0>
flake8.options.manager    MainProcess    544 DEBUG    Registered option "Option(None, --max-annotations-complexity, action=None, default=3, dest=max_annotations_complexity, type=<class 'int'>, callback=None, help=None, callback=None, callback_args=None, callback_kwargs=None, metavar=None)".
flake8.options.manager    MainProcess    545 DEBUG    Removing ['TAE002'] from the default ignore list
flake8.options.manager    MainProcess    545 DEBUG    Attempted to remove TAE002 from default ignore but it was not a member of the list.
flake8.options.manager    MainProcess    545 DEBUG    Extending default select list with ['TAE002']
flake8.options.manager    MainProcess    545 DEBUG    Removing ['T00'] from the default ignore list
flake8.options.manager    MainProcess    545 DEBUG    Attempted to remove T00 from default ignore but it was not a member of the list.
flake8.options.manager    MainProcess    545 DEBUG    Extending default select list with ['T00']
flake8.options.manager    MainProcess    545 DEBUG    Removing ['S'] from the default ignore list
flake8.options.manager    MainProcess    545 DEBUG    Attempted to remove S from default ignore but it was not a member of the list.
flake8.options.manager    MainProcess    545 DEBUG    Extending default select list with ['S']
flake8.plugins.manager    MainProcess    545 DEBUG    Registering options from plugin "logging-format" on OptionManager <flake8.options.manager.OptionManager object at 0x7f39c245cfd0>
flake8.options.manager    MainProcess    545 DEBUG    Registered option "Option(None, --enable-extra-whitelist, action=store_true, default=None, dest=enable_extra_whitelist, type=None, callback=None, help=None, callback=None, callback_args=None, callback_kwargs=None, metavar=None)".
flake8.options.manager    MainProcess    545 DEBUG    Removing ['logging-format'] from the default ignore list
flake8.options.manager    MainProcess    545 DEBUG    Attempted to remove logging-format from default ignore but it was not a member of the list.
flake8.options.manager    MainProcess    545 DEBUG    Extending default select list with ['logging-format']
flake8.plugins.manager    MainProcess    545 DEBUG    Registering options from plugin "RST" on OptionManager <flake8.options.manager.OptionManager object at 0x7f39c245cfd0>
flake8.options.manager    MainProcess    545 DEBUG    Registered option "Option(None, --rst-directives, action=None, default=, dest=rst_directives, type=None, callback=None, help=Comma-separated list of additional RST directives., callback=None, callback_args=None, callback_kwargs=None, metavar=LIST)".
flake8.options.manager    MainProcess    545 DEBUG    Registered option "Option(None, --rst-roles, action=None, default=, dest=rst_roles, type=None, callback=None, help=Comma-separated list of additional RST roles., callback=None, callback_args=None, callback_kwargs=None, metavar=LIST)".
flake8.options.manager    MainProcess    545 DEBUG    Removing ['RST'] from the default ignore list
flake8.options.manager    MainProcess    545 DEBUG    Attempted to remove RST from default ignore but it was not a member of the list.
flake8.options.manager    MainProcess    545 DEBUG    Extending default select list with ['RST']
flake8.options.config     MainProcess    547 DEBUG    User configuration files have no flake8 section
flake8.options.config     MainProcess    547 DEBUG    Local configuration files have no flake8 section
flake8.options.aggregator MainProcess    547 DEBUG    Extended default ignore list: ['B950', 'B902', 'B903', 'B901']
flake8.options.aggregator MainProcess    547 DEBUG    Merged default ignore list: ['E704', 'B950', 'B902', 'E24', 'E123', 'E226', 'W503', 'B901', 'E126', 'W504', 'E121', 'B903']
flake8.options.aggregator MainProcess    547 DEBUG    Extended default select list: ['DAR', 'WPS', 'N8', 'I00', 'S', 'B', 'C4', 'S001', 'C10', 'Q0', 'logging-format', 'P', 'pylint', 'TAE002', 'A00', 'EXE00', 'C90', 'RST', 'C81', 'F', 'T100', 'T00', 'D', 'N4', 'R70', 'E8']
flake8.plugins.manager    MainProcess    548 DEBUG    Providing options to plugin "C90".
flake8.plugins.manager    MainProcess    548 DEBUG    Providing options to plugin "F".
flake8.plugins.manager    MainProcess    548 DEBUG    Providing options to plugin "C10".
flake8.plugins.manager    MainProcess    548 DEBUG    Providing options to plugin "E8".
flake8.plugins.manager    MainProcess    548 DEBUG    Providing options to plugin "D".
flake8.plugins.manager    MainProcess    548 DEBUG    Providing options to plugin "N8".
flake8.plugins.manager    MainProcess    548 DEBUG    Providing options to plugin "I00".
flake8.plugins.manager    MainProcess    548 DEBUG    Providing options to plugin "R70".
flake8.plugins.manager    MainProcess    548 DEBUG    Providing options to plugin "WPS".
flake8.plugins.manager    MainProcess    548 DEBUG    Providing options to plugin "Q0".
flake8.plugins.manager    MainProcess    548 DEBUG    Providing options to plugin "TAE002".
flake8.plugins.manager    MainProcess    548 DEBUG    Providing options to plugin "logging-format".
flake8.plugins.manager    MainProcess    548 DEBUG    Providing options to plugin "RST".
flake8.plugins.manager    MainProcess    548 DEBUG    Retrieving plugin for "default".
flake8.plugins.manager    MainProcess    548 DEBUG    Checking for "colored" in plugin type manager.
flake8.plugins.manager    MainProcess    548 DEBUG    Retrieving plugin for "colored".
flake8.checker            MainProcess    565 INFO     Making checkers
flake8.checker            MainProcess    566 DEBUG    "~/src/github/cherrypy/cheroot" has not been excluded
flake8.checker            MainProcess    566 DEBUG    "~/src/github/cherrypy/cheroot" has not been excluded
flake8.checker            MainProcess    566 DEBUG    ".git" has been excluded
flake8.checker            MainProcess    566 DEBUG    "~/src/github/cherrypy/cheroot/.github" has not been excluded
flake8.checker            MainProcess    566 DEBUG    "~/src/github/cherrypy/cheroot/cheroot" has not been excluded
flake8.checker            MainProcess    567 DEBUG    "~/src/github/cherrypy/cheroot/docs" has not been excluded
flake8.checker            MainProcess    567 DEBUG    "~/src/github/cherrypy/cheroot/cheroot.egg-info" has not been excluded
flake8.checker            MainProcess    567 DEBUG    "~/src/github/cherrypy/cheroot/.pytest_cache" has not been excluded
flake8.checker            MainProcess    567 DEBUG    "~/src/github/cherrypy/cheroot/.tmontmp" has not been excluded
flake8.checker            MainProcess    567 DEBUG    "__pycache__" has been excluded
flake8.checker            MainProcess    567 DEBUG    "~/src/github/cherrypy/cheroot/dist" has not been excluded
flake8.checker            MainProcess    567 DEBUG    "~/src/github/cherrypy/cheroot/.vscode" has not been excluded
flake8.checker            MainProcess    567 DEBUG    "~/src/github/cherrypy/cheroot/pip-wheel-metadata" has not been excluded
flake8.checker            MainProcess    567 DEBUG    ".eggs" has been excluded
flake8.checker            MainProcess    567 DEBUG    "~/src/github/cherrypy/cheroot/.codecov.yml" has not been excluded
flake8.checker            MainProcess    567 DEBUG    "~/src/github/cherrypy/cheroot/.codecov.yml" has not been excluded
flake8.checker            MainProcess    569 DEBUG    "~/src/github/cherrypy/cheroot/.git_archival.txt" has not been excluded
flake8.checker            MainProcess    569 DEBUG    "~/src/github/cherrypy/cheroot/.git_archival.txt" has not been excluded
flake8.checker            MainProcess    569 DEBUG    "~/src/github/cherrypy/cheroot/.python-version" has not been excluded
flake8.checker            MainProcess    570 DEBUG    "~/src/github/cherrypy/cheroot/.python-version" has not been excluded
flake8.checker            MainProcess    570 DEBUG    "~/src/github/cherrypy/cheroot/coverage.xml" has not been excluded
flake8.checker            MainProcess    570 DEBUG    "~/src/github/cherrypy/cheroot/coverage.xml" has not been excluded
flake8.checker            MainProcess    570 DEBUG    "~/src/github/cherrypy/cheroot/junit-test-results.xml" has not been excluded
flake8.checker            MainProcess    570 DEBUG    "~/src/github/cherrypy/cheroot/junit-test-results.xml" has not been excluded
flake8.checker            MainProcess    571 DEBUG    "~/src/github/cherrypy/cheroot/.testmondata" has not been excluded
flake8.checker            MainProcess    571 DEBUG    "~/src/github/cherrypy/cheroot/.testmondata" has not been excluded
flake8.checker            MainProcess    571 DEBUG    "~/src/github/cherrypy/cheroot/.pre-commit-config.yaml.failing" has not been excluded
flake8.checker            MainProcess    571 DEBUG    "~/src/github/cherrypy/cheroot/.pre-commit-config.yaml.failing" has not been excluded
flake8.checker            MainProcess    572 DEBUG    "~/src/github/cherrypy/cheroot/.gitignore" has not been excluded
flake8.checker            MainProcess    572 DEBUG    "~/src/github/cherrypy/cheroot/.gitignore" has not been excluded
flake8.checker            MainProcess    572 DEBUG    "~/src/github/cherrypy/cheroot/.gitattributes" has not been excluded
flake8.checker            MainProcess    572 DEBUG    "~/src/github/cherrypy/cheroot/.gitattributes" has not been excluded
flake8.checker            MainProcess    573 DEBUG    "~/src/github/cherrypy/cheroot/.appveyor.yml" has not been excluded
flake8.checker            MainProcess    573 DEBUG    "~/src/github/cherrypy/cheroot/.appveyor.yml" has not been excluded
flake8.checker            MainProcess    573 DEBUG    "~/src/github/cherrypy/cheroot/.pyup.yml" has not been excluded
flake8.checker            MainProcess    573 DEBUG    "~/src/github/cherrypy/cheroot/.pyup.yml" has not been excluded
flake8.checker            MainProcess    574 DEBUG    "~/src/github/cherrypy/cheroot/setup.py" has not been excluded
flake8.checker            MainProcess    574 DEBUG    "~/src/github/cherrypy/cheroot/setup.py" has not been excluded
flake8.checker            MainProcess    574 DEBUG    "~/src/github/cherrypy/cheroot/.readthedocs.yml" has not been excluded
flake8.checker            MainProcess    574 DEBUG    "~/src/github/cherrypy/cheroot/.readthedocs.yml" has not been excluded
flake8.checker            MainProcess    574 DEBUG    "~/src/github/cherrypy/cheroot/CHANGES.rst" has not been excluded
flake8.checker            MainProcess    575 DEBUG    "~/src/github/cherrypy/cheroot/CHANGES.rst" has not been excluded
flake8.checker            MainProcess    575 DEBUG    "~/src/github/cherrypy/cheroot/.travis.yml" has not been excluded
flake8.checker            MainProcess    575 DEBUG    "~/src/github/cherrypy/cheroot/.travis.yml" has not been excluded
flake8.checker            MainProcess    575 DEBUG    "~/src/github/cherrypy/cheroot/LICENSE.md" has not been excluded
flake8.checker            MainProcess    575 DEBUG    "~/src/github/cherrypy/cheroot/LICENSE.md" has not been excluded
flake8.checker            MainProcess    576 DEBUG    "~/src/github/cherrypy/cheroot/README.rst" has not been excluded
flake8.checker            MainProcess    576 DEBUG    "~/src/github/cherrypy/cheroot/README.rst" has not been excluded
flake8.checker            MainProcess    576 DEBUG    "~/src/github/cherrypy/cheroot/pytest.ini" has not been excluded
flake8.checker            MainProcess    576 DEBUG    "~/src/github/cherrypy/cheroot/pytest.ini" has not been excluded
flake8.checker            MainProcess    577 DEBUG    "~/src/github/cherrypy/cheroot/.coverage" has not been excluded
flake8.checker            MainProcess    577 DEBUG    "~/src/github/cherrypy/cheroot/.coverage" has not been excluded
flake8.checker            MainProcess    577 DEBUG    "~/src/github/cherrypy/cheroot/pyproject.toml" has not been excluded
flake8.checker            MainProcess    577 DEBUG    "~/src/github/cherrypy/cheroot/pyproject.toml" has not been excluded
flake8.checker            MainProcess    578 DEBUG    "~/src/github/cherrypy/cheroot/tox.ini" has not been excluded
flake8.checker            MainProcess    578 DEBUG    "~/src/github/cherrypy/cheroot/tox.ini" has not been excluded
flake8.checker            MainProcess    578 DEBUG    "~/src/github/cherrypy/cheroot/setup.cfg" has not been excluded
flake8.checker            MainProcess    578 DEBUG    "~/src/github/cherrypy/cheroot/setup.cfg" has not been excluded
flake8.checker            MainProcess    578 DEBUG    "~/src/github/cherrypy/cheroot/.pre-commit-config.yaml" has not been excluded
flake8.checker            MainProcess    579 DEBUG    "~/src/github/cherrypy/cheroot/.pre-commit-config.yaml" has not been excluded
flake8.checker            MainProcess    579 DEBUG    "~/src/github/cherrypy/cheroot/flakehell_lint_verbose.log" has not been excluded
flake8.checker            MainProcess    579 DEBUG    "~/src/github/cherrypy/cheroot/flakehell_lint_verbose.log" has not been excluded
flake8.checker            MainProcess    579 DEBUG    "~/src/github/cherrypy/cheroot/.circleci" has not been excluded
flake8.checker            MainProcess    579 DEBUG    "~/src/github/cherrypy/cheroot/.circleci/config.yml" has not been excluded
flake8.checker            MainProcess    580 DEBUG    "~/src/github/cherrypy/cheroot/config.yml" has not been excluded
flake8.checker            MainProcess    580 DEBUG    "~/src/github/cherrypy/cheroot/.github" has not been excluded
flake8.checker            MainProcess    580 DEBUG    "~/src/github/cherrypy/cheroot/.github/ISSUE_TEMPLATE" has not been excluded
flake8.checker            MainProcess    580 DEBUG    "~/src/github/cherrypy/cheroot/.github/workflows" has not been excluded
flake8.checker            MainProcess    580 DEBUG    "~/src/github/cherrypy/cheroot/.github/stale.yml" has not been excluded
flake8.checker            MainProcess    580 DEBUG    "~/src/github/cherrypy/cheroot/stale.yml" has not been excluded
flake8.checker            MainProcess    581 DEBUG    "~/src/github/cherrypy/cheroot/.github/CODE_OF_CONDUCT.md" has not been excluded
flake8.checker            MainProcess    581 DEBUG    "~/src/github/cherrypy/cheroot/CODE_OF_CONDUCT.md" has not been excluded
flake8.checker            MainProcess    581 DEBUG    "~/src/github/cherrypy/cheroot/.github/PULL_REQUEST_TEMPLATE.md" has not been excluded
flake8.checker            MainProcess    581 DEBUG    "~/src/github/cherrypy/cheroot/PULL_REQUEST_TEMPLATE.md" has not been excluded
flake8.checker            MainProcess    582 DEBUG    "~/src/github/cherrypy/cheroot/.github/config.yml" has not been excluded
flake8.checker            MainProcess    582 DEBUG    "~/src/github/cherrypy/cheroot/config.yml" has not been excluded
flake8.checker            MainProcess    582 DEBUG    "~/src/github/cherrypy/cheroot/.github/ISSUE_TEMPLATE.md" has not been excluded
flake8.checker            MainProcess    582 DEBUG    "~/src/github/cherrypy/cheroot/ISSUE_TEMPLATE.md" has not been excluded
flake8.checker            MainProcess    582 DEBUG    "~/src/github/cherrypy/cheroot/.github/CONTRIBUTING.rst" has not been excluded
flake8.checker            MainProcess    583 DEBUG    "~/src/github/cherrypy/cheroot/CONTRIBUTING.rst" has not been excluded
flake8.checker            MainProcess    583 DEBUG    "~/src/github/cherrypy/cheroot/.github/FUNDING.yml" has not been excluded
flake8.checker            MainProcess    583 DEBUG    "~/src/github/cherrypy/cheroot/FUNDING.yml" has not been excluded
flake8.checker            MainProcess    583 DEBUG    "~/src/github/cherrypy/cheroot/.github/ISSUE_TEMPLATE" has not been excluded
flake8.checker            MainProcess    583 DEBUG    "~/src/github/cherrypy/cheroot/.github/ISSUE_TEMPLATE/Bug_report.md" has not been excluded
flake8.checker            MainProcess    584 DEBUG    "~/src/github/cherrypy/cheroot/Bug_report.md" has not been excluded
flake8.checker            MainProcess    584 DEBUG    "~/src/github/cherrypy/cheroot/.github/ISSUE_TEMPLATE/Feature_request.md" has not been excluded
flake8.checker            MainProcess    584 DEBUG    "~/src/github/cherrypy/cheroot/Feature_request.md" has not been excluded
flake8.checker            MainProcess    584 DEBUG    "~/src/github/cherrypy/cheroot/.github/workflows" has not been excluded
flake8.checker            MainProcess    584 DEBUG    "~/src/github/cherrypy/cheroot/.github/workflows/python-tests.yml" has not been excluded
flake8.checker            MainProcess    585 DEBUG    "~/src/github/cherrypy/cheroot/python-tests.yml" has not been excluded
flake8.checker            MainProcess    585 DEBUG    "~/src/github/cherrypy/cheroot/.github/workflows/python-linters.yml" has not been excluded
flake8.checker            MainProcess    585 DEBUG    "~/src/github/cherrypy/cheroot/python-linters.yml" has not been excluded
flake8.checker            MainProcess    585 DEBUG    "~/src/github/cherrypy/cheroot/cheroot" has not been excluded
flake8.checker            MainProcess    586 DEBUG    "~/src/github/cherrypy/cheroot/cheroot/ssl" has not been excluded
flake8.checker            MainProcess    586 DEBUG    "~/src/github/cherrypy/cheroot/cheroot/test" has not been excluded
flake8.checker            MainProcess    586 DEBUG    "~/src/github/cherrypy/cheroot/cheroot/workers" has not been excluded
flake8.checker            MainProcess    586 DEBUG    "__pycache__" has been excluded
flake8.checker            MainProcess    586 DEBUG    "~/src/github/cherrypy/cheroot/cheroot/__main__.py" has not been excluded
flake8.checker            MainProcess    586 DEBUG    "~/src/github/cherrypy/cheroot/__main__.py" has not been excluded
flake8.checker            MainProcess    586 DEBUG    "~/src/github/cherrypy/cheroot/cheroot/__init__.py" has not been excluded
flake8.checker            MainProcess    586 DEBUG    "~/src/github/cherrypy/cheroot/__init__.py" has not been excluded
flake8.checker            MainProcess    587 DEBUG    "~/src/github/cherrypy/cheroot/cheroot/__init__.pyc" has not been excluded
flake8.checker            MainProcess    587 DEBUG    "~/src/github/cherrypy/cheroot/__init__.pyc" has not been excluded
flake8.checker            MainProcess    587 DEBUG    "~/src/github/cherrypy/cheroot/cheroot/errors.pyc" has not been excluded
flake8.checker            MainProcess    587 DEBUG    "~/src/github/cherrypy/cheroot/errors.pyc" has not been excluded
flake8.checker            MainProcess    588 DEBUG    "~/src/github/cherrypy/cheroot/cheroot/testing.pyc" has not been excluded
flake8.checker            MainProcess    588 DEBUG    "~/src/github/cherrypy/cheroot/testing.pyc" has not been excluded
flake8.checker            MainProcess    588 DEBUG    "~/src/github/cherrypy/cheroot/cheroot/wsgi.pyc" has not been excluded
flake8.checker            MainProcess    588 DEBUG    "~/src/github/cherrypy/cheroot/wsgi.pyc" has not been excluded
flake8.checker            MainProcess    588 DEBUG    "~/src/github/cherrypy/cheroot/cheroot/makefile.pyc" has not been excluded
flake8.checker            MainProcess    588 DEBUG    "~/src/github/cherrypy/cheroot/makefile.pyc" has not been excluded
flake8.checker            MainProcess    589 DEBUG    "~/src/github/cherrypy/cheroot/cheroot/__socket.pyc" has not been excluded
flake8.checker            MainProcess    589 DEBUG    "~/src/github/cherrypy/cheroot/__socket.pyc" has not been excluded
flake8.checker            MainProcess    589 DEBUG    "~/src/github/cherrypy/cheroot/cheroot/_compat.pyc" has not been excluded
flake8.checker            MainProcess    589 DEBUG    "~/src/github/cherrypy/cheroot/_compat.pyc" has not been excluded
flake8.checker            MainProcess    590 DEBUG    "~/src/github/cherrypy/cheroot/cheroot/testing.py" has not been excluded
flake8.checker            MainProcess    590 DEBUG    "~/src/github/cherrypy/cheroot/testing.py" has not been excluded
flake8.checker            MainProcess    590 DEBUG    "~/src/github/cherrypy/cheroot/cheroot/connections.py" has not been excluded
flake8.checker            MainProcess    590 DEBUG    "~/src/github/cherrypy/cheroot/connections.py" has not been excluded
flake8.checker            MainProcess    591 DEBUG    "~/src/github/cherrypy/cheroot/cheroot/server.pyc" has not been excluded
flake8.checker            MainProcess    591 DEBUG    "~/src/github/cherrypy/cheroot/server.pyc" has not been excluded
flake8.checker            MainProcess    591 DEBUG    "~/src/github/cherrypy/cheroot/cheroot/errors.py" has not been excluded
flake8.checker            MainProcess    591 DEBUG    "~/src/github/cherrypy/cheroot/errors.py" has not been excluded
flake8.checker            MainProcess    591 DEBUG    "~/src/github/cherrypy/cheroot/cheroot/makefile.py" has not been excluded
flake8.checker            MainProcess    591 DEBUG    "~/src/github/cherrypy/cheroot/makefile.py" has not been excluded
flake8.checker            MainProcess    592 DEBUG    "~/src/github/cherrypy/cheroot/cheroot/_compat.py" has not been excluded
flake8.checker            MainProcess    592 DEBUG    "~/src/github/cherrypy/cheroot/_compat.py" has not been excluded
flake8.checker            MainProcess    592 DEBUG    "~/src/github/cherrypy/cheroot/cheroot/cli.py" has not been excluded
flake8.checker            MainProcess    592 DEBUG    "~/src/github/cherrypy/cheroot/cli.py" has not been excluded
flake8.checker            MainProcess    593 DEBUG    "~/src/github/cherrypy/cheroot/cheroot/server.py" has not been excluded
flake8.checker            MainProcess    593 DEBUG    "~/src/github/cherrypy/cheroot/server.py" has not been excluded
flake8.checker            MainProcess    593 DEBUG    "~/src/github/cherrypy/cheroot/cheroot/wsgi.py" has not been excluded
flake8.checker            MainProcess    593 DEBUG    "~/src/github/cherrypy/cheroot/wsgi.py" has not been excluded
flake8.checker            MainProcess    594 DEBUG    "~/src/github/cherrypy/cheroot/cheroot/ssl" has not been excluded
flake8.checker            MainProcess    594 DEBUG    "__pycache__" has been excluded
flake8.checker            MainProcess    594 DEBUG    "~/src/github/cherrypy/cheroot/cheroot/ssl/__init__.pyc" has not been excluded
flake8.checker            MainProcess    594 DEBUG    "~/src/github/cherrypy/cheroot/__init__.pyc" has not been excluded
flake8.checker            MainProcess    594 DEBUG    "~/src/github/cherrypy/cheroot/cheroot/ssl/pyopenssl.pyc" has not been excluded
flake8.checker            MainProcess    594 DEBUG    "~/src/github/cherrypy/cheroot/pyopenssl.pyc" has not been excluded
flake8.checker            MainProcess    595 DEBUG    "~/src/github/cherrypy/cheroot/cheroot/ssl/__init__.py" has not been excluded
flake8.checker            MainProcess    595 DEBUG    "~/src/github/cherrypy/cheroot/__init__.py" has not been excluded
flake8.checker            MainProcess    595 DEBUG    "~/src/github/cherrypy/cheroot/cheroot/ssl/pyopenssl.py" has not been excluded
flake8.checker            MainProcess    595 DEBUG    "~/src/github/cherrypy/cheroot/pyopenssl.py" has not been excluded
flake8.checker            MainProcess    596 DEBUG    "~/src/github/cherrypy/cheroot/cheroot/ssl/builtin.py" has not been excluded
flake8.checker            MainProcess    596 DEBUG    "~/src/github/cherrypy/cheroot/builtin.py" has not been excluded
flake8.checker            MainProcess    596 DEBUG    "~/src/github/cherrypy/cheroot/cheroot/test" has not been excluded
flake8.checker            MainProcess    596 DEBUG    "__pycache__" has been excluded
flake8.checker            MainProcess    596 DEBUG    "~/src/github/cherrypy/cheroot/cheroot/test/__init__.pyc" has not been excluded
flake8.checker            MainProcess    596 DEBUG    "~/src/github/cherrypy/cheroot/__init__.pyc" has not been excluded
flake8.checker            MainProcess    597 DEBUG    "~/src/github/cherrypy/cheroot/cheroot/test/webtest.pyc" has not been excluded
flake8.checker            MainProcess    597 DEBUG    "~/src/github/cherrypy/cheroot/webtest.pyc" has not been excluded
flake8.checker            MainProcess    597 DEBUG    "~/src/github/cherrypy/cheroot/cheroot/test/__init__.py" has not been excluded
flake8.checker            MainProcess    597 DEBUG    "~/src/github/cherrypy/cheroot/__init__.py" has not been excluded
flake8.checker            MainProcess    597 DEBUG    "~/src/github/cherrypy/cheroot/cheroot/test/webtest.py" has not been excluded
flake8.checker            MainProcess    598 DEBUG    "~/src/github/cherrypy/cheroot/webtest.py" has not been excluded
flake8.checker            MainProcess    598 DEBUG    "~/src/github/cherrypy/cheroot/cheroot/test/test_dispatch.py" has not been excluded
flake8.checker            MainProcess    598 DEBUG    "~/src/github/cherrypy/cheroot/test_dispatch.py" has not been excluded
flake8.checker            MainProcess    598 DEBUG    "~/src/github/cherrypy/cheroot/cheroot/test/test_makefile.py" has not been excluded
flake8.checker            MainProcess    598 DEBUG    "~/src/github/cherrypy/cheroot/test_makefile.py" has not been excluded
flake8.checker            MainProcess    599 DEBUG    "~/src/github/cherrypy/cheroot/cheroot/test/test_errors.py" has not been excluded
flake8.checker            MainProcess    599 DEBUG    "~/src/github/cherrypy/cheroot/test_errors.py" has not been excluded
flake8.checker            MainProcess    599 DEBUG    "~/src/github/cherrypy/cheroot/cheroot/test/helper.py" has not been excluded
flake8.checker            MainProcess    599 DEBUG    "~/src/github/cherrypy/cheroot/helper.py" has not been excluded
flake8.checker            MainProcess    600 DEBUG    "~/src/github/cherrypy/cheroot/cheroot/test/conftest.py" has not been excluded
flake8.checker            MainProcess    600 DEBUG    "~/src/github/cherrypy/cheroot/conftest.py" has not been excluded
flake8.checker            MainProcess    600 DEBUG    "~/src/github/cherrypy/cheroot/cheroot/test/test__compat.py" has not been excluded
flake8.checker            MainProcess    600 DEBUG    "~/src/github/cherrypy/cheroot/test__compat.py" has not been excluded
flake8.checker            MainProcess    601 DEBUG    "~/src/github/cherrypy/cheroot/cheroot/test/test_core.py" has not been excluded
flake8.checker            MainProcess    601 DEBUG    "~/src/github/cherrypy/cheroot/test_core.py" has not been excluded
flake8.checker            MainProcess    601 DEBUG    "~/src/github/cherrypy/cheroot/cheroot/test/test_cli.py" has not been excluded
flake8.checker            MainProcess    601 DEBUG    "~/src/github/cherrypy/cheroot/test_cli.py" has not been excluded
flake8.checker            MainProcess    602 DEBUG    "~/src/github/cherrypy/cheroot/cheroot/test/test_server.py" has not been excluded
flake8.checker            MainProcess    602 DEBUG    "~/src/github/cherrypy/cheroot/test_server.py" has not been excluded
flake8.checker            MainProcess    602 DEBUG    "~/src/github/cherrypy/cheroot/cheroot/test/test_conn.py" has not been excluded
flake8.checker            MainProcess    602 DEBUG    "~/src/github/cherrypy/cheroot/test_conn.py" has not been excluded
flake8.checker            MainProcess    602 DEBUG    "~/src/github/cherrypy/cheroot/cheroot/test/test_ssl.py" has not been excluded
flake8.checker            MainProcess    602 DEBUG    "~/src/github/cherrypy/cheroot/test_ssl.py" has not been excluded
flake8.checker            MainProcess    603 DEBUG    "~/src/github/cherrypy/cheroot/cheroot/workers" has not been excluded
flake8.checker            MainProcess    603 DEBUG    "__pycache__" has been excluded
flake8.checker            MainProcess    603 DEBUG    "~/src/github/cherrypy/cheroot/cheroot/workers/__init__.py" has not been excluded
flake8.checker            MainProcess    603 DEBUG    "~/src/github/cherrypy/cheroot/__init__.py" has not been excluded
flake8.checker            MainProcess    603 DEBUG    "~/src/github/cherrypy/cheroot/cheroot/workers/__init__.pyc" has not been excluded
flake8.checker            MainProcess    603 DEBUG    "~/src/github/cherrypy/cheroot/__init__.pyc" has not been excluded
flake8.checker            MainProcess    604 DEBUG    "~/src/github/cherrypy/cheroot/cheroot/workers/threadpool.pyc" has not been excluded
flake8.checker            MainProcess    604 DEBUG    "~/src/github/cherrypy/cheroot/threadpool.pyc" has not been excluded
flake8.checker            MainProcess    604 DEBUG    "~/src/github/cherrypy/cheroot/cheroot/workers/threadpool.py" has not been excluded
flake8.checker            MainProcess    604 DEBUG    "~/src/github/cherrypy/cheroot/threadpool.py" has not been excluded
flake8.checker            MainProcess    605 DEBUG    "~/src/github/cherrypy/cheroot/docs" has not been excluded
flake8.checker            MainProcess    605 DEBUG    "~/src/github/cherrypy/cheroot/docs/pkg" has not been excluded
flake8.checker            MainProcess    605 DEBUG    "~/src/github/cherrypy/cheroot/docs/index.rst" has not been excluded
flake8.checker            MainProcess    605 DEBUG    "~/src/github/cherrypy/cheroot/index.rst" has not been excluded
flake8.checker            MainProcess    605 DEBUG    "~/src/github/cherrypy/cheroot/docs/history.rst" has not been excluded
flake8.checker            MainProcess    605 DEBUG    "~/src/github/cherrypy/cheroot/history.rst" has not been excluded
flake8.checker            MainProcess    606 DEBUG    "~/src/github/cherrypy/cheroot/docs/contribute.rst" has not been excluded
flake8.checker            MainProcess    606 DEBUG    "~/src/github/cherrypy/cheroot/contribute.rst" has not been excluded
flake8.checker            MainProcess    606 DEBUG    "~/src/github/cherrypy/cheroot/docs/scm_tag_titles_ext.py" has not been excluded
flake8.checker            MainProcess    606 DEBUG    "~/src/github/cherrypy/cheroot/scm_tag_titles_ext.py" has not been excluded
flake8.checker            MainProcess    607 DEBUG    "~/src/github/cherrypy/cheroot/docs/conf.py" has not been excluded
flake8.checker            MainProcess    607 DEBUG    "~/src/github/cherrypy/cheroot/conf.py" has not been excluded
flake8.checker            MainProcess    607 DEBUG    "~/src/github/cherrypy/cheroot/docs/spelling_wordlist.txt" has not been excluded
flake8.checker            MainProcess    607 DEBUG    "~/src/github/cherrypy/cheroot/spelling_wordlist.txt" has not been excluded
flake8.checker            MainProcess    608 DEBUG    "~/src/github/cherrypy/cheroot/docs/pkg" has not been excluded
flake8.checker            MainProcess    608 DEBUG    "~/src/github/cherrypy/cheroot/docs/pkg/cheroot.errors.rst" has not been excluded
flake8.checker            MainProcess    608 DEBUG    "~/src/github/cherrypy/cheroot/cheroot.errors.rst" has not been excluded
flake8.checker            MainProcess    608 DEBUG    "~/src/github/cherrypy/cheroot/docs/pkg/cheroot.makefile.rst" has not been excluded
flake8.checker            MainProcess    608 DEBUG    "~/src/github/cherrypy/cheroot/cheroot.makefile.rst" has not been excluded
flake8.checker            MainProcess    609 DEBUG    "~/src/github/cherrypy/cheroot/docs/pkg/cheroot.ssl.builtin.rst" has not been excluded
flake8.checker            MainProcess    609 DEBUG    "~/src/github/cherrypy/cheroot/cheroot.ssl.builtin.rst" has not been excluded
flake8.checker            MainProcess    609 DEBUG    "~/src/github/cherrypy/cheroot/docs/pkg/cheroot.ssl.pyopenssl.rst" has not been excluded
flake8.checker            MainProcess    609 DEBUG    "~/src/github/cherrypy/cheroot/cheroot.ssl.pyopenssl.rst" has not been excluded
flake8.checker            MainProcess    610 DEBUG    "~/src/github/cherrypy/cheroot/docs/pkg/cheroot.ssl.rst" has not been excluded
flake8.checker            MainProcess    610 DEBUG    "~/src/github/cherrypy/cheroot/cheroot.ssl.rst" has not been excluded
flake8.checker            MainProcess    610 DEBUG    "~/src/github/cherrypy/cheroot/docs/pkg/cheroot.testing.rst" has not been excluded
flake8.checker            MainProcess    610 DEBUG    "~/src/github/cherrypy/cheroot/cheroot.testing.rst" has not been excluded
flake8.checker            MainProcess    611 DEBUG    "~/src/github/cherrypy/cheroot/docs/pkg/cheroot.wsgi.rst" has not been excluded
flake8.checker            MainProcess    611 DEBUG    "~/src/github/cherrypy/cheroot/cheroot.wsgi.rst" has not been excluded
flake8.checker            MainProcess    611 DEBUG    "~/src/github/cherrypy/cheroot/docs/pkg/cheroot.workers.rst" has not been excluded
flake8.checker            MainProcess    611 DEBUG    "~/src/github/cherrypy/cheroot/cheroot.workers.rst" has not been excluded
flake8.checker            MainProcess    612 DEBUG    "~/src/github/cherrypy/cheroot/docs/pkg/cheroot.server.rst" has not been excluded
flake8.checker            MainProcess    612 DEBUG    "~/src/github/cherrypy/cheroot/cheroot.server.rst" has not been excluded
flake8.checker            MainProcess    612 DEBUG    "~/src/github/cherrypy/cheroot/docs/pkg/cheroot._compat.rst" has not been excluded
flake8.checker            MainProcess    612 DEBUG    "~/src/github/cherrypy/cheroot/cheroot._compat.rst" has not been excluded
flake8.checker            MainProcess    612 DEBUG    "~/src/github/cherrypy/cheroot/docs/pkg/cheroot.test.rst" has not been excluded
flake8.checker            MainProcess    613 DEBUG    "~/src/github/cherrypy/cheroot/cheroot.test.rst" has not been excluded
flake8.checker            MainProcess    613 DEBUG    "~/src/github/cherrypy/cheroot/cheroot.egg-info" has not been excluded
flake8.checker            MainProcess    613 DEBUG    "~/src/github/cherrypy/cheroot/cheroot.egg-info/PKG-INFO" has not been excluded
flake8.checker            MainProcess    613 DEBUG    "~/src/github/cherrypy/cheroot/PKG-INFO" has not been excluded
flake8.checker            MainProcess    614 DEBUG    "~/src/github/cherrypy/cheroot/cheroot.egg-info/dependency_links.txt" has not been excluded
flake8.checker            MainProcess    614 DEBUG    "~/src/github/cherrypy/cheroot/dependency_links.txt" has not been excluded
flake8.checker            MainProcess    615 DEBUG    "~/src/github/cherrypy/cheroot/cheroot.egg-info/requires.txt" has not been excluded
flake8.checker            MainProcess    615 DEBUG    "~/src/github/cherrypy/cheroot/requires.txt" has not been excluded
flake8.checker            MainProcess    616 DEBUG    "~/src/github/cherrypy/cheroot/cheroot.egg-info/top_level.txt" has not been excluded
flake8.checker            MainProcess    616 DEBUG    "~/src/github/cherrypy/cheroot/top_level.txt" has not been excluded
flake8.checker            MainProcess    616 DEBUG    "~/src/github/cherrypy/cheroot/cheroot.egg-info/SOURCES.txt" has not been excluded
flake8.checker            MainProcess    617 DEBUG    "~/src/github/cherrypy/cheroot/SOURCES.txt" has not been excluded
flake8.checker            MainProcess    617 DEBUG    "~/src/github/cherrypy/cheroot/cheroot.egg-info/entry_points.txt" has not been excluded
flake8.checker            MainProcess    617 DEBUG    "~/src/github/cherrypy/cheroot/entry_points.txt" has not been excluded
flake8.checker            MainProcess    618 DEBUG    "~/src/github/cherrypy/cheroot/.pytest_cache" has not been excluded
flake8.checker            MainProcess    618 DEBUG    "~/src/github/cherrypy/cheroot/.pytest_cache/v" has not been excluded
flake8.checker            MainProcess    618 DEBUG    "~/src/github/cherrypy/cheroot/.pytest_cache/README.md" has not been excluded
flake8.checker            MainProcess    618 DEBUG    "~/src/github/cherrypy/cheroot/README.md" has not been excluded
flake8.checker            MainProcess    618 DEBUG    "~/src/github/cherrypy/cheroot/.pytest_cache/.gitignore" has not been excluded
flake8.checker            MainProcess    618 DEBUG    "~/src/github/cherrypy/cheroot/.gitignore" has not been excluded
flake8.checker            MainProcess    619 DEBUG    "~/src/github/cherrypy/cheroot/.pytest_cache/v" has not been excluded
flake8.checker            MainProcess    619 DEBUG    "~/src/github/cherrypy/cheroot/.pytest_cache/v/cache" has not been excluded
flake8.checker            MainProcess    619 DEBUG    "~/src/github/cherrypy/cheroot/.pytest_cache/v/cache" has not been excluded
flake8.checker            MainProcess    619 DEBUG    "~/src/github/cherrypy/cheroot/.pytest_cache/v/cache/nodeids" has not been excluded
flake8.checker            MainProcess    619 DEBUG    "~/src/github/cherrypy/cheroot/nodeids" has not been excluded
flake8.checker            MainProcess    620 DEBUG    "~/src/github/cherrypy/cheroot/.pytest_cache/v/cache/lastfailed" has not been excluded
flake8.checker            MainProcess    620 DEBUG    "~/src/github/cherrypy/cheroot/lastfailed" has not been excluded
flake8.checker            MainProcess    620 DEBUG    "~/src/github/cherrypy/cheroot/.pytest_cache/v/cache/stepwise" has not been excluded
flake8.checker            MainProcess    620 DEBUG    "~/src/github/cherrypy/cheroot/stepwise" has not been excluded
flake8.checker            MainProcess    621 DEBUG    "~/src/github/cherrypy/cheroot/.tmontmp" has not been excluded
flake8.checker            MainProcess    621 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache" has not been excluded
flake8.checker            MainProcess    621 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6" has not been excluded
flake8.checker            MainProcess    621 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6" has not been excluded
flake8.checker            MainProcess    621 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/collections" has not been excluded
flake8.checker            MainProcess    621 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests" has not been excluded
flake8.checker            MainProcess    621 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/json" has not been excluded
flake8.checker            MainProcess    621 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/email" has not been excluded
flake8.checker            MainProcess    621 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/urllib" has not been excluded
flake8.checker            MainProcess    621 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/os" has not been excluded
flake8.checker            MainProcess    622 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/tkinter" has not been excluded
flake8.checker            MainProcess    622 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/html" has not been excluded
flake8.checker            MainProcess    622 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/http" has not been excluded
flake8.checker            MainProcess    622 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/ctypes" has not been excluded
flake8.checker            MainProcess    622 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/cheroot" has not been excluded
flake8.checker            MainProcess    622 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/six" has not been excluded
flake8.checker            MainProcess    622 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/logging" has not been excluded
flake8.checker            MainProcess    622 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/unittest" has not been excluded
flake8.checker            MainProcess    622 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/importlib" has not been excluded
flake8.checker            MainProcess    622 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/_importlib_modulespec.data.json" has not been excluded
flake8.checker            MainProcess    622 DEBUG    "~/src/github/cherrypy/cheroot/_importlib_modulespec.data.json" has not been excluded
flake8.checker            MainProcess    623 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/_importlib_modulespec.meta.json" has not been excluded
flake8.checker            MainProcess    623 DEBUG    "~/src/github/cherrypy/cheroot/_importlib_modulespec.meta.json" has not been excluded
flake8.checker            MainProcess    623 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/abc.data.json" has not been excluded
flake8.checker            MainProcess    623 DEBUG    "~/src/github/cherrypy/cheroot/abc.data.json" has not been excluded
flake8.checker            MainProcess    624 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/abc.meta.json" has not been excluded
flake8.checker            MainProcess    624 DEBUG    "~/src/github/cherrypy/cheroot/abc.meta.json" has not been excluded
flake8.checker            MainProcess    624 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/types.data.json" has not been excluded
flake8.checker            MainProcess    624 DEBUG    "~/src/github/cherrypy/cheroot/types.data.json" has not been excluded
flake8.checker            MainProcess    624 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/types.meta.json" has not been excluded
flake8.checker            MainProcess    625 DEBUG    "~/src/github/cherrypy/cheroot/types.meta.json" has not been excluded
flake8.checker            MainProcess    625 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/typing.data.json" has not been excluded
flake8.checker            MainProcess    625 DEBUG    "~/src/github/cherrypy/cheroot/typing.data.json" has not been excluded
flake8.checker            MainProcess    625 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/typing.meta.json" has not been excluded
flake8.checker            MainProcess    625 DEBUG    "~/src/github/cherrypy/cheroot/typing.meta.json" has not been excluded
flake8.checker            MainProcess    626 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/sys.data.json" has not been excluded
flake8.checker            MainProcess    626 DEBUG    "~/src/github/cherrypy/cheroot/sys.data.json" has not been excluded
flake8.checker            MainProcess    626 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/sys.meta.json" has not been excluded
flake8.checker            MainProcess    626 DEBUG    "~/src/github/cherrypy/cheroot/sys.meta.json" has not been excluded
flake8.checker            MainProcess    627 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/builtins.data.json" has not been excluded
flake8.checker            MainProcess    627 DEBUG    "~/src/github/cherrypy/cheroot/builtins.data.json" has not been excluded
flake8.checker            MainProcess    627 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/builtins.meta.json" has not been excluded
flake8.checker            MainProcess    627 DEBUG    "~/src/github/cherrypy/cheroot/builtins.meta.json" has not been excluded
flake8.checker            MainProcess    628 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/_markupbase.data.json" has not been excluded
flake8.checker            MainProcess    628 DEBUG    "~/src/github/cherrypy/cheroot/_markupbase.data.json" has not been excluded
flake8.checker            MainProcess    628 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/_markupbase.meta.json" has not been excluded
flake8.checker            MainProcess    628 DEBUG    "~/src/github/cherrypy/cheroot/_markupbase.meta.json" has not been excluded
flake8.checker            MainProcess    629 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/msvcrt.data.json" has not been excluded
flake8.checker            MainProcess    629 DEBUG    "~/src/github/cherrypy/cheroot/msvcrt.data.json" has not been excluded
flake8.checker            MainProcess    629 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/msvcrt.meta.json" has not been excluded
flake8.checker            MainProcess    629 DEBUG    "~/src/github/cherrypy/cheroot/msvcrt.meta.json" has not been excluded
flake8.checker            MainProcess    630 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/termios.data.json" has not been excluded
flake8.checker            MainProcess    630 DEBUG    "~/src/github/cherrypy/cheroot/termios.data.json" has not been excluded
flake8.checker            MainProcess    630 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/termios.meta.json" has not been excluded
flake8.checker            MainProcess    630 DEBUG    "~/src/github/cherrypy/cheroot/termios.meta.json" has not been excluded
flake8.checker            MainProcess    630 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/tty.data.json" has not been excluded
flake8.checker            MainProcess    631 DEBUG    "~/src/github/cherrypy/cheroot/tty.data.json" has not been excluded
flake8.checker            MainProcess    631 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/tty.meta.json" has not been excluded
flake8.checker            MainProcess    631 DEBUG    "~/src/github/cherrypy/cheroot/tty.meta.json" has not been excluded
flake8.checker            MainProcess    631 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/warnings.data.json" has not been excluded
flake8.checker            MainProcess    631 DEBUG    "~/src/github/cherrypy/cheroot/warnings.data.json" has not been excluded
flake8.checker            MainProcess    632 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/warnings.meta.json" has not been excluded
flake8.checker            MainProcess    632 DEBUG    "~/src/github/cherrypy/cheroot/warnings.meta.json" has not been excluded
flake8.checker            MainProcess    632 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/pprint.data.json" has not been excluded
flake8.checker            MainProcess    632 DEBUG    "~/src/github/cherrypy/cheroot/pprint.data.json" has not been excluded
flake8.checker            MainProcess    633 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/pprint.meta.json" has not been excluded
flake8.checker            MainProcess    633 DEBUG    "~/src/github/cherrypy/cheroot/pprint.meta.json" has not been excluded
flake8.checker            MainProcess    633 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/array.data.json" has not been excluded
flake8.checker            MainProcess    633 DEBUG    "~/src/github/cherrypy/cheroot/array.data.json" has not been excluded
flake8.checker            MainProcess    634 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/array.meta.json" has not been excluded
flake8.checker            MainProcess    634 DEBUG    "~/src/github/cherrypy/cheroot/array.meta.json" has not been excluded
flake8.checker            MainProcess    634 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/posix.data.json" has not been excluded
flake8.checker            MainProcess    634 DEBUG    "~/src/github/cherrypy/cheroot/posix.data.json" has not been excluded
flake8.checker            MainProcess    635 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/posix.meta.json" has not been excluded
flake8.checker            MainProcess    635 DEBUG    "~/src/github/cherrypy/cheroot/posix.meta.json" has not been excluded
flake8.checker            MainProcess    635 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/_thread.data.json" has not been excluded
flake8.checker            MainProcess    635 DEBUG    "~/src/github/cherrypy/cheroot/_thread.data.json" has not been excluded
flake8.checker            MainProcess    635 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/_thread.meta.json" has not been excluded
flake8.checker            MainProcess    636 DEBUG    "~/src/github/cherrypy/cheroot/_thread.meta.json" has not been excluded
flake8.checker            MainProcess    636 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/queue.data.json" has not been excluded
flake8.checker            MainProcess    636 DEBUG    "~/src/github/cherrypy/cheroot/queue.data.json" has not been excluded
flake8.checker            MainProcess    636 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/queue.meta.json" has not been excluded
flake8.checker            MainProcess    636 DEBUG    "~/src/github/cherrypy/cheroot/queue.meta.json" has not been excluded
flake8.checker            MainProcess    637 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/pickle.data.json" has not been excluded
flake8.checker            MainProcess    637 DEBUG    "~/src/github/cherrypy/cheroot/pickle.data.json" has not been excluded
flake8.checker            MainProcess    638 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/pickle.meta.json" has not been excluded
flake8.checker            MainProcess    638 DEBUG    "~/src/github/cherrypy/cheroot/pickle.meta.json" has not been excluded
flake8.checker            MainProcess    638 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/_dummy_thread.data.json" has not been excluded
flake8.checker            MainProcess    638 DEBUG    "~/src/github/cherrypy/cheroot/_dummy_thread.data.json" has not been excluded
flake8.checker            MainProcess    638 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/_dummy_thread.meta.json" has not been excluded
flake8.checker            MainProcess    639 DEBUG    "~/src/github/cherrypy/cheroot/_dummy_thread.meta.json" has not been excluded
flake8.checker            MainProcess    639 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/shlex.data.json" has not been excluded
flake8.checker            MainProcess    639 DEBUG    "~/src/github/cherrypy/cheroot/shlex.data.json" has not been excluded
flake8.checker            MainProcess    639 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/shlex.meta.json" has not been excluded
flake8.checker            MainProcess    640 DEBUG    "~/src/github/cherrypy/cheroot/shlex.meta.json" has not been excluded
flake8.checker            MainProcess    640 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/itertools.data.json" has not been excluded
flake8.checker            MainProcess    640 DEBUG    "~/src/github/cherrypy/cheroot/itertools.data.json" has not been excluded
flake8.checker            MainProcess    640 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/itertools.meta.json" has not been excluded
flake8.checker            MainProcess    640 DEBUG    "~/src/github/cherrypy/cheroot/itertools.meta.json" has not been excluded
flake8.checker            MainProcess    641 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/mmap.data.json" has not been excluded
flake8.checker            MainProcess    641 DEBUG    "~/src/github/cherrypy/cheroot/mmap.data.json" has not been excluded
flake8.checker            MainProcess    641 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/mmap.meta.json" has not been excluded
flake8.checker            MainProcess    641 DEBUG    "~/src/github/cherrypy/cheroot/mmap.meta.json" has not been excluded
flake8.checker            MainProcess    642 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/codecs.data.json" has not been excluded
flake8.checker            MainProcess    642 DEBUG    "~/src/github/cherrypy/cheroot/codecs.data.json" has not been excluded
flake8.checker            MainProcess    642 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/codecs.meta.json" has not been excluded
flake8.checker            MainProcess    642 DEBUG    "~/src/github/cherrypy/cheroot/codecs.meta.json" has not been excluded
flake8.checker            MainProcess    643 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/string.data.json" has not been excluded
flake8.checker            MainProcess    643 DEBUG    "~/src/github/cherrypy/cheroot/string.data.json" has not been excluded
flake8.checker            MainProcess    643 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/string.meta.json" has not been excluded
flake8.checker            MainProcess    643 DEBUG    "~/src/github/cherrypy/cheroot/string.meta.json" has not been excluded
flake8.checker            MainProcess    643 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/enum.data.json" has not been excluded
flake8.checker            MainProcess    644 DEBUG    "~/src/github/cherrypy/cheroot/enum.data.json" has not been excluded
flake8.checker            MainProcess    644 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/enum.meta.json" has not been excluded
flake8.checker            MainProcess    644 DEBUG    "~/src/github/cherrypy/cheroot/enum.meta.json" has not been excluded
flake8.checker            MainProcess    644 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/zipimport.data.json" has not been excluded
flake8.checker            MainProcess    644 DEBUG    "~/src/github/cherrypy/cheroot/zipimport.data.json" has not been excluded
flake8.checker            MainProcess    645 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/zipimport.meta.json" has not been excluded
flake8.checker            MainProcess    645 DEBUG    "~/src/github/cherrypy/cheroot/zipimport.meta.json" has not been excluded
flake8.checker            MainProcess    645 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/errno.data.json" has not been excluded
flake8.checker            MainProcess    645 DEBUG    "~/src/github/cherrypy/cheroot/errno.data.json" has not been excluded
flake8.checker            MainProcess    646 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/errno.meta.json" has not been excluded
flake8.checker            MainProcess    646 DEBUG    "~/src/github/cherrypy/cheroot/errno.meta.json" has not been excluded
flake8.checker            MainProcess    646 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/contextlib.data.json" has not been excluded
flake8.checker            MainProcess    646 DEBUG    "~/src/github/cherrypy/cheroot/contextlib.data.json" has not been excluded
flake8.checker            MainProcess    646 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/contextlib.meta.json" has not been excluded
flake8.checker            MainProcess    647 DEBUG    "~/src/github/cherrypy/cheroot/contextlib.meta.json" has not been excluded
flake8.checker            MainProcess    647 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/pwd.data.json" has not been excluded
flake8.checker            MainProcess    647 DEBUG    "~/src/github/cherrypy/cheroot/pwd.data.json" has not been excluded
flake8.checker            MainProcess    647 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/pwd.meta.json" has not been excluded
flake8.checker            MainProcess    647 DEBUG    "~/src/github/cherrypy/cheroot/pwd.meta.json" has not been excluded
flake8.checker            MainProcess    648 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/grp.data.json" has not been excluded
flake8.checker            MainProcess    648 DEBUG    "~/src/github/cherrypy/cheroot/grp.data.json" has not been excluded
flake8.checker            MainProcess    648 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/grp.meta.json" has not been excluded
flake8.checker            MainProcess    648 DEBUG    "~/src/github/cherrypy/cheroot/grp.meta.json" has not been excluded
flake8.checker            MainProcess    649 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/traceback.data.json" has not been excluded
flake8.checker            MainProcess    649 DEBUG    "~/src/github/cherrypy/cheroot/traceback.data.json" has not been excluded
flake8.checker            MainProcess    649 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/traceback.meta.json" has not been excluded
flake8.checker            MainProcess    649 DEBUG    "~/src/github/cherrypy/cheroot/traceback.meta.json" has not been excluded
flake8.checker            MainProcess    649 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/time.data.json" has not been excluded
flake8.checker            MainProcess    650 DEBUG    "~/src/github/cherrypy/cheroot/time.data.json" has not been excluded
flake8.checker            MainProcess    650 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/time.meta.json" has not been excluded
flake8.checker            MainProcess    650 DEBUG    "~/src/github/cherrypy/cheroot/time.meta.json" has not been excluded
flake8.checker            MainProcess    650 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/threading.data.json" has not been excluded
flake8.checker            MainProcess    650 DEBUG    "~/src/github/cherrypy/cheroot/threading.data.json" has not been excluded
flake8.checker            MainProcess    651 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/threading.meta.json" has not been excluded
flake8.checker            MainProcess    651 DEBUG    "~/src/github/cherrypy/cheroot/threading.meta.json" has not been excluded
flake8.checker            MainProcess    651 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/functools.data.json" has not been excluded
flake8.checker            MainProcess    651 DEBUG    "~/src/github/cherrypy/cheroot/functools.data.json" has not been excluded
flake8.checker            MainProcess    652 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/functools.meta.json" has not been excluded
flake8.checker            MainProcess    652 DEBUG    "~/src/github/cherrypy/cheroot/functools.meta.json" has not been excluded
flake8.checker            MainProcess    652 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/__future__.data.json" has not been excluded
flake8.checker            MainProcess    652 DEBUG    "~/src/github/cherrypy/cheroot/__future__.data.json" has not been excluded
flake8.checker            MainProcess    652 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/__future__.meta.json" has not been excluded
flake8.checker            MainProcess    653 DEBUG    "~/src/github/cherrypy/cheroot/__future__.meta.json" has not been excluded
flake8.checker            MainProcess    653 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/reprlib.data.json" has not been excluded
flake8.checker            MainProcess    653 DEBUG    "~/src/github/cherrypy/cheroot/reprlib.data.json" has not been excluded
flake8.checker            MainProcess    653 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/reprlib.meta.json" has not been excluded
flake8.checker            MainProcess    653 DEBUG    "~/src/github/cherrypy/cheroot/reprlib.meta.json" has not been excluded
flake8.checker            MainProcess    654 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/datetime.data.json" has not been excluded
flake8.checker            MainProcess    654 DEBUG    "~/src/github/cherrypy/cheroot/datetime.data.json" has not been excluded
flake8.checker            MainProcess    654 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/datetime.meta.json" has not been excluded
flake8.checker            MainProcess    654 DEBUG    "~/src/github/cherrypy/cheroot/datetime.meta.json" has not been excluded
flake8.checker            MainProcess    655 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/struct.data.json" has not been excluded
flake8.checker            MainProcess    655 DEBUG    "~/src/github/cherrypy/cheroot/struct.data.json" has not been excluded
flake8.checker            MainProcess    655 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/struct.meta.json" has not been excluded
flake8.checker            MainProcess    655 DEBUG    "~/src/github/cherrypy/cheroot/struct.meta.json" has not been excluded
flake8.checker            MainProcess    655 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/re.data.json" has not been excluded
flake8.checker            MainProcess    655 DEBUG    "~/src/github/cherrypy/cheroot/re.data.json" has not been excluded
flake8.checker            MainProcess    656 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/re.meta.json" has not been excluded
flake8.checker            MainProcess    656 DEBUG    "~/src/github/cherrypy/cheroot/re.meta.json" has not been excluded
flake8.checker            MainProcess    656 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/io.data.json" has not been excluded
flake8.checker            MainProcess    656 DEBUG    "~/src/github/cherrypy/cheroot/io.data.json" has not been excluded
flake8.checker            MainProcess    657 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/io.meta.json" has not been excluded
flake8.checker            MainProcess    657 DEBUG    "~/src/github/cherrypy/cheroot/io.meta.json" has not been excluded
flake8.checker            MainProcess    657 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/socket.data.json" has not been excluded
flake8.checker            MainProcess    657 DEBUG    "~/src/github/cherrypy/cheroot/socket.data.json" has not been excluded
flake8.checker            MainProcess    657 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/socket.meta.json" has not been excluded
flake8.checker            MainProcess    658 DEBUG    "~/src/github/cherrypy/cheroot/socket.meta.json" has not been excluded
flake8.checker            MainProcess    658 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/socketserver.data.json" has not been excluded
flake8.checker            MainProcess    658 DEBUG    "~/src/github/cherrypy/cheroot/socketserver.data.json" has not been excluded
flake8.checker            MainProcess    658 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/socketserver.meta.json" has not been excluded
flake8.checker            MainProcess    658 DEBUG    "~/src/github/cherrypy/cheroot/socketserver.meta.json" has not been excluded
flake8.checker            MainProcess    659 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/fcntl.data.json" has not been excluded
flake8.checker            MainProcess    659 DEBUG    "~/src/github/cherrypy/cheroot/fcntl.data.json" has not been excluded
flake8.checker            MainProcess    659 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/fcntl.meta.json" has not been excluded
flake8.checker            MainProcess    659 DEBUG    "~/src/github/cherrypy/cheroot/fcntl.meta.json" has not been excluded
flake8.checker            MainProcess    660 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/ssl.data.json" has not been excluded
flake8.checker            MainProcess    660 DEBUG    "~/src/github/cherrypy/cheroot/ssl.data.json" has not been excluded
flake8.checker            MainProcess    660 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/ssl.meta.json" has not been excluded
flake8.checker            MainProcess    660 DEBUG    "~/src/github/cherrypy/cheroot/ssl.meta.json" has not been excluded
flake8.checker            MainProcess    660 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/configparser.data.json" has not been excluded
flake8.checker            MainProcess    660 DEBUG    "~/src/github/cherrypy/cheroot/configparser.data.json" has not been excluded
flake8.checker            MainProcess    661 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/configparser.meta.json" has not been excluded
flake8.checker            MainProcess    661 DEBUG    "~/src/github/cherrypy/cheroot/configparser.meta.json" has not been excluded
flake8.checker            MainProcess    661 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/platform.data.json" has not been excluded
flake8.checker            MainProcess    661 DEBUG    "~/src/github/cherrypy/cheroot/platform.data.json" has not been excluded
flake8.checker            MainProcess    662 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/platform.meta.json" has not been excluded
flake8.checker            MainProcess    662 DEBUG    "~/src/github/cherrypy/cheroot/platform.meta.json" has not been excluded
flake8.checker            MainProcess    662 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/pkg_resources.data.json" has not been excluded
flake8.checker            MainProcess    662 DEBUG    "~/src/github/cherrypy/cheroot/pkg_resources.data.json" has not been excluded
flake8.checker            MainProcess    663 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/pkg_resources.meta.json" has not been excluded
flake8.checker            MainProcess    663 DEBUG    "~/src/github/cherrypy/cheroot/pkg_resources.meta.json" has not been excluded
flake8.checker            MainProcess    663 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/tempfile.data.json" has not been excluded
flake8.checker            MainProcess    663 DEBUG    "~/src/github/cherrypy/cheroot/tempfile.data.json" has not been excluded
flake8.checker            MainProcess    663 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/tempfile.meta.json" has not been excluded
flake8.checker            MainProcess    664 DEBUG    "~/src/github/cherrypy/cheroot/tempfile.meta.json" has not been excluded
flake8.checker            MainProcess    664 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/argparse.data.json" has not been excluded
flake8.checker            MainProcess    664 DEBUG    "~/src/github/cherrypy/cheroot/argparse.data.json" has not been excluded
flake8.checker            MainProcess    664 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/argparse.meta.json" has not been excluded
flake8.checker            MainProcess    664 DEBUG    "~/src/github/cherrypy/cheroot/argparse.meta.json" has not been excluded
flake8.checker            MainProcess    665 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/conf.data.json" has not been excluded
flake8.checker            MainProcess    665 DEBUG    "~/src/github/cherrypy/cheroot/conf.data.json" has not been excluded
flake8.checker            MainProcess    665 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/conf.meta.json" has not been excluded
flake8.checker            MainProcess    665 DEBUG    "~/src/github/cherrypy/cheroot/conf.meta.json" has not been excluded
flake8.checker            MainProcess    666 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/collections" has not been excluded
flake8.checker            MainProcess    666 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/collections/__init__.data.json" has not been excluded
flake8.checker            MainProcess    666 DEBUG    "~/src/github/cherrypy/cheroot/__init__.data.json" has not been excluded
flake8.checker            MainProcess    666 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/collections/__init__.meta.json" has not been excluded
flake8.checker            MainProcess    666 DEBUG    "~/src/github/cherrypy/cheroot/__init__.meta.json" has not been excluded
flake8.checker            MainProcess    667 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/collections/abc.data.json" has not been excluded
flake8.checker            MainProcess    667 DEBUG    "~/src/github/cherrypy/cheroot/abc.data.json" has not been excluded
flake8.checker            MainProcess    667 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/collections/abc.meta.json" has not been excluded
flake8.checker            MainProcess    667 DEBUG    "~/src/github/cherrypy/cheroot/abc.meta.json" has not been excluded
flake8.checker            MainProcess    668 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests" has not been excluded
flake8.checker            MainProcess    668 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/packages" has not been excluded
flake8.checker            MainProcess    668 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/compat.data.json" has not been excluded
flake8.checker            MainProcess    668 DEBUG    "~/src/github/cherrypy/cheroot/compat.data.json" has not been excluded
flake8.checker            MainProcess    668 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/compat.meta.json" has not been excluded
flake8.checker            MainProcess    668 DEBUG    "~/src/github/cherrypy/cheroot/compat.meta.json" has not been excluded
flake8.checker            MainProcess    669 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/structures.data.json" has not been excluded
flake8.checker            MainProcess    669 DEBUG    "~/src/github/cherrypy/cheroot/structures.data.json" has not been excluded
flake8.checker            MainProcess    669 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/structures.meta.json" has not been excluded
flake8.checker            MainProcess    669 DEBUG    "~/src/github/cherrypy/cheroot/structures.meta.json" has not been excluded
flake8.checker            MainProcess    670 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/hooks.data.json" has not been excluded
flake8.checker            MainProcess    670 DEBUG    "~/src/github/cherrypy/cheroot/hooks.data.json" has not been excluded
flake8.checker            MainProcess    670 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/hooks.meta.json" has not been excluded
flake8.checker            MainProcess    670 DEBUG    "~/src/github/cherrypy/cheroot/hooks.meta.json" has not been excluded
flake8.checker            MainProcess    671 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/exceptions.data.json" has not been excluded
flake8.checker            MainProcess    671 DEBUG    "~/src/github/cherrypy/cheroot/exceptions.data.json" has not been excluded
flake8.checker            MainProcess    671 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/exceptions.meta.json" has not been excluded
flake8.checker            MainProcess    671 DEBUG    "~/src/github/cherrypy/cheroot/exceptions.meta.json" has not been excluded
flake8.checker            MainProcess    672 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/status_codes.data.json" has not been excluded
flake8.checker            MainProcess    672 DEBUG    "~/src/github/cherrypy/cheroot/status_codes.data.json" has not been excluded
flake8.checker            MainProcess    672 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/status_codes.meta.json" has not been excluded
flake8.checker            MainProcess    672 DEBUG    "~/src/github/cherrypy/cheroot/status_codes.meta.json" has not been excluded
flake8.checker            MainProcess    672 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/__init__.data.json" has not been excluded
flake8.checker            MainProcess    673 DEBUG    "~/src/github/cherrypy/cheroot/__init__.data.json" has not been excluded
flake8.checker            MainProcess    673 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/__init__.meta.json" has not been excluded
flake8.checker            MainProcess    673 DEBUG    "~/src/github/cherrypy/cheroot/__init__.meta.json" has not been excluded
flake8.checker            MainProcess    674 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/adapters.data.json" has not been excluded
flake8.checker            MainProcess    674 DEBUG    "~/src/github/cherrypy/cheroot/adapters.data.json" has not been excluded
flake8.checker            MainProcess    674 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/adapters.meta.json" has not been excluded
flake8.checker            MainProcess    674 DEBUG    "~/src/github/cherrypy/cheroot/adapters.meta.json" has not been excluded
flake8.checker            MainProcess    674 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/utils.data.json" has not been excluded
flake8.checker            MainProcess    674 DEBUG    "~/src/github/cherrypy/cheroot/utils.data.json" has not been excluded
flake8.checker            MainProcess    675 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/utils.meta.json" has not been excluded
flake8.checker            MainProcess    675 DEBUG    "~/src/github/cherrypy/cheroot/utils.meta.json" has not been excluded
flake8.checker            MainProcess    675 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/cookies.data.json" has not been excluded
flake8.checker            MainProcess    676 DEBUG    "~/src/github/cherrypy/cheroot/cookies.data.json" has not been excluded
flake8.checker            MainProcess    676 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/cookies.meta.json" has not been excluded
flake8.checker            MainProcess    676 DEBUG    "~/src/github/cherrypy/cheroot/cookies.meta.json" has not been excluded
flake8.checker            MainProcess    676 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/auth.data.json" has not been excluded
flake8.checker            MainProcess    676 DEBUG    "~/src/github/cherrypy/cheroot/auth.data.json" has not been excluded
flake8.checker            MainProcess    677 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/auth.meta.json" has not been excluded
flake8.checker            MainProcess    677 DEBUG    "~/src/github/cherrypy/cheroot/auth.meta.json" has not been excluded
flake8.checker            MainProcess    677 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/models.data.json" has not been excluded
flake8.checker            MainProcess    677 DEBUG    "~/src/github/cherrypy/cheroot/models.data.json" has not been excluded
flake8.checker            MainProcess    678 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/models.meta.json" has not been excluded
flake8.checker            MainProcess    678 DEBUG    "~/src/github/cherrypy/cheroot/models.meta.json" has not been excluded
flake8.checker            MainProcess    678 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/sessions.data.json" has not been excluded
flake8.checker            MainProcess    678 DEBUG    "~/src/github/cherrypy/cheroot/sessions.data.json" has not been excluded
flake8.checker            MainProcess    679 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/sessions.meta.json" has not been excluded
flake8.checker            MainProcess    679 DEBUG    "~/src/github/cherrypy/cheroot/sessions.meta.json" has not been excluded
flake8.checker            MainProcess    679 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/api.data.json" has not been excluded
flake8.checker            MainProcess    679 DEBUG    "~/src/github/cherrypy/cheroot/api.data.json" has not been excluded
flake8.checker            MainProcess    680 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/api.meta.json" has not been excluded
flake8.checker            MainProcess    680 DEBUG    "~/src/github/cherrypy/cheroot/api.meta.json" has not been excluded
flake8.checker            MainProcess    680 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/packages" has not been excluded
flake8.checker            MainProcess    680 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/packages/urllib3" has not been excluded
flake8.checker            MainProcess    680 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/packages/__init__.data.json" has not been excluded
flake8.checker            MainProcess    680 DEBUG    "~/src/github/cherrypy/cheroot/__init__.data.json" has not been excluded
flake8.checker            MainProcess    681 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/packages/__init__.meta.json" has not been excluded
flake8.checker            MainProcess    681 DEBUG    "~/src/github/cherrypy/cheroot/__init__.meta.json" has not been excluded
flake8.checker            MainProcess    681 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/packages/urllib3" has not been excluded
flake8.checker            MainProcess    681 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/packages/urllib3/util" has not been excluded
flake8.checker            MainProcess    681 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/packages/urllib3/packages" has not been excluded
flake8.checker            MainProcess    681 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/packages/urllib3/request.data.json" has not been excluded
flake8.checker            MainProcess    682 DEBUG    "~/src/github/cherrypy/cheroot/request.data.json" has not been excluded
flake8.checker            MainProcess    682 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/packages/urllib3/request.meta.json" has not been excluded
flake8.checker            MainProcess    682 DEBUG    "~/src/github/cherrypy/cheroot/request.meta.json" has not been excluded
flake8.checker            MainProcess    682 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/packages/urllib3/_collections.data.json" has not been excluded
flake8.checker            MainProcess    682 DEBUG    "~/src/github/cherrypy/cheroot/_collections.data.json" has not been excluded
flake8.checker            MainProcess    683 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/packages/urllib3/_collections.meta.json" has not been excluded
flake8.checker            MainProcess    683 DEBUG    "~/src/github/cherrypy/cheroot/_collections.meta.json" has not been excluded
flake8.checker            MainProcess    683 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/packages/urllib3/exceptions.data.json" has not been excluded
flake8.checker            MainProcess    683 DEBUG    "~/src/github/cherrypy/cheroot/exceptions.data.json" has not been excluded
flake8.checker            MainProcess    684 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/packages/urllib3/exceptions.meta.json" has not been excluded
flake8.checker            MainProcess    684 DEBUG    "~/src/github/cherrypy/cheroot/exceptions.meta.json" has not been excluded
flake8.checker            MainProcess    684 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/packages/urllib3/poolmanager.data.json" has not been excluded
flake8.checker            MainProcess    684 DEBUG    "~/src/github/cherrypy/cheroot/poolmanager.data.json" has not been excluded
flake8.checker            MainProcess    685 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/packages/urllib3/poolmanager.meta.json" has not been excluded
flake8.checker            MainProcess    685 DEBUG    "~/src/github/cherrypy/cheroot/poolmanager.meta.json" has not been excluded
flake8.checker            MainProcess    685 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/packages/urllib3/__init__.data.json" has not been excluded
flake8.checker            MainProcess    685 DEBUG    "~/src/github/cherrypy/cheroot/__init__.data.json" has not been excluded
flake8.checker            MainProcess    685 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/packages/urllib3/__init__.meta.json" has not been excluded
flake8.checker            MainProcess    686 DEBUG    "~/src/github/cherrypy/cheroot/__init__.meta.json" has not been excluded
flake8.checker            MainProcess    686 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/packages/urllib3/connection.data.json" has not been excluded
flake8.checker            MainProcess    686 DEBUG    "~/src/github/cherrypy/cheroot/connection.data.json" has not been excluded
flake8.checker            MainProcess    686 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/packages/urllib3/connection.meta.json" has not been excluded
flake8.checker            MainProcess    686 DEBUG    "~/src/github/cherrypy/cheroot/connection.meta.json" has not been excluded
flake8.checker            MainProcess    687 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/packages/urllib3/filepost.data.json" has not been excluded
flake8.checker            MainProcess    687 DEBUG    "~/src/github/cherrypy/cheroot/filepost.data.json" has not been excluded
flake8.checker            MainProcess    687 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/packages/urllib3/filepost.meta.json" has not been excluded
flake8.checker            MainProcess    687 DEBUG    "~/src/github/cherrypy/cheroot/filepost.meta.json" has not been excluded
flake8.checker            MainProcess    688 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/packages/urllib3/fields.data.json" has not been excluded
flake8.checker            MainProcess    688 DEBUG    "~/src/github/cherrypy/cheroot/fields.data.json" has not been excluded
flake8.checker            MainProcess    688 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/packages/urllib3/fields.meta.json" has not been excluded
flake8.checker            MainProcess    688 DEBUG    "~/src/github/cherrypy/cheroot/fields.meta.json" has not been excluded
flake8.checker            MainProcess    689 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/packages/urllib3/response.data.json" has not been excluded
flake8.checker            MainProcess    689 DEBUG    "~/src/github/cherrypy/cheroot/response.data.json" has not been excluded
flake8.checker            MainProcess    689 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/packages/urllib3/response.meta.json" has not been excluded
flake8.checker            MainProcess    689 DEBUG    "~/src/github/cherrypy/cheroot/response.meta.json" has not been excluded
flake8.checker            MainProcess    690 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/packages/urllib3/connectionpool.data.json" has not been excluded
flake8.checker            MainProcess    690 DEBUG    "~/src/github/cherrypy/cheroot/connectionpool.data.json" has not been excluded
flake8.checker            MainProcess    690 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/packages/urllib3/connectionpool.meta.json" has not been excluded
flake8.checker            MainProcess    690 DEBUG    "~/src/github/cherrypy/cheroot/connectionpool.meta.json" has not been excluded
flake8.checker            MainProcess    690 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/packages/urllib3/util" has not been excluded
flake8.checker            MainProcess    691 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/packages/urllib3/util/response.data.json" has not been excluded
flake8.checker            MainProcess    691 DEBUG    "~/src/github/cherrypy/cheroot/response.data.json" has not been excluded
flake8.checker            MainProcess    691 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/packages/urllib3/util/response.meta.json" has not been excluded
flake8.checker            MainProcess    691 DEBUG    "~/src/github/cherrypy/cheroot/response.meta.json" has not been excluded
flake8.checker            MainProcess    691 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/packages/urllib3/util/connection.data.json" has not been excluded
flake8.checker            MainProcess    692 DEBUG    "~/src/github/cherrypy/cheroot/connection.data.json" has not been excluded
flake8.checker            MainProcess    692 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/packages/urllib3/util/connection.meta.json" has not been excluded
flake8.checker            MainProcess    692 DEBUG    "~/src/github/cherrypy/cheroot/connection.meta.json" has not been excluded
flake8.checker            MainProcess    692 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/packages/urllib3/util/request.data.json" has not been excluded
flake8.checker            MainProcess    692 DEBUG    "~/src/github/cherrypy/cheroot/request.data.json" has not been excluded
flake8.checker            MainProcess    693 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/packages/urllib3/util/request.meta.json" has not been excluded
flake8.checker            MainProcess    693 DEBUG    "~/src/github/cherrypy/cheroot/request.meta.json" has not been excluded
flake8.checker            MainProcess    693 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/packages/urllib3/util/__init__.data.json" has not been excluded
flake8.checker            MainProcess    693 DEBUG    "~/src/github/cherrypy/cheroot/__init__.data.json" has not been excluded
flake8.checker            MainProcess    694 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/packages/urllib3/util/__init__.meta.json" has not been excluded
flake8.checker            MainProcess    694 DEBUG    "~/src/github/cherrypy/cheroot/__init__.meta.json" has not been excluded
flake8.checker            MainProcess    694 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/packages/urllib3/util/ssl_.data.json" has not been excluded
flake8.checker            MainProcess    694 DEBUG    "~/src/github/cherrypy/cheroot/ssl_.data.json" has not been excluded
flake8.checker            MainProcess    695 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/packages/urllib3/util/ssl_.meta.json" has not been excluded
flake8.checker            MainProcess    695 DEBUG    "~/src/github/cherrypy/cheroot/ssl_.meta.json" has not been excluded
flake8.checker            MainProcess    695 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/packages/urllib3/util/retry.data.json" has not been excluded
flake8.checker            MainProcess    695 DEBUG    "~/src/github/cherrypy/cheroot/retry.data.json" has not been excluded
flake8.checker            MainProcess    696 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/packages/urllib3/util/retry.meta.json" has not been excluded
flake8.checker            MainProcess    696 DEBUG    "~/src/github/cherrypy/cheroot/retry.meta.json" has not been excluded
flake8.checker            MainProcess    696 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/packages/urllib3/util/timeout.data.json" has not been excluded
flake8.checker            MainProcess    696 DEBUG    "~/src/github/cherrypy/cheroot/timeout.data.json" has not been excluded
flake8.checker            MainProcess    696 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/packages/urllib3/util/timeout.meta.json" has not been excluded
flake8.checker            MainProcess    697 DEBUG    "~/src/github/cherrypy/cheroot/timeout.meta.json" has not been excluded
flake8.checker            MainProcess    697 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/packages/urllib3/util/url.data.json" has not been excluded
flake8.checker            MainProcess    697 DEBUG    "~/src/github/cherrypy/cheroot/url.data.json" has not been excluded
flake8.checker            MainProcess    697 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/packages/urllib3/util/url.meta.json" has not been excluded
flake8.checker            MainProcess    697 DEBUG    "~/src/github/cherrypy/cheroot/url.meta.json" has not been excluded
flake8.checker            MainProcess    698 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/packages/urllib3/packages" has not been excluded
flake8.checker            MainProcess    698 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/packages/urllib3/packages/ssl_match_hostname" has not been excluded
flake8.checker            MainProcess    698 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/packages/urllib3/packages/__init__.data.json" has not been excluded
flake8.checker            MainProcess    698 DEBUG    "~/src/github/cherrypy/cheroot/__init__.data.json" has not been excluded
flake8.checker            MainProcess    698 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/packages/urllib3/packages/__init__.meta.json" has not been excluded
flake8.checker            MainProcess    699 DEBUG    "~/src/github/cherrypy/cheroot/__init__.meta.json" has not been excluded
flake8.checker            MainProcess    699 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/packages/urllib3/packages/ssl_match_hostname" has not been excluded
flake8.checker            MainProcess    699 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/packages/urllib3/packages/ssl_match_hostname/__init__.data.json" has not been excluded
flake8.checker            MainProcess    699 DEBUG    "~/src/github/cherrypy/cheroot/__init__.data.json" has not been excluded
flake8.checker            MainProcess    699 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/requests/packages/urllib3/packages/ssl_match_hostname/__init__.meta.json" has not been excluded
flake8.checker            MainProcess    700 DEBUG    "~/src/github/cherrypy/cheroot/__init__.meta.json" has not been excluded
flake8.checker            MainProcess    700 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/json" has not been excluded
flake8.checker            MainProcess    700 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/json/encoder.data.json" has not been excluded
flake8.checker            MainProcess    700 DEBUG    "~/src/github/cherrypy/cheroot/encoder.data.json" has not been excluded
flake8.checker            MainProcess    700 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/json/encoder.meta.json" has not been excluded
flake8.checker            MainProcess    701 DEBUG    "~/src/github/cherrypy/cheroot/encoder.meta.json" has not been excluded
flake8.checker            MainProcess    701 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/json/decoder.data.json" has not been excluded
flake8.checker            MainProcess    701 DEBUG    "~/src/github/cherrypy/cheroot/decoder.data.json" has not been excluded
flake8.checker            MainProcess    701 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/json/decoder.meta.json" has not been excluded
flake8.checker            MainProcess    701 DEBUG    "~/src/github/cherrypy/cheroot/decoder.meta.json" has not been excluded
flake8.checker            MainProcess    702 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/json/__init__.data.json" has not been excluded
flake8.checker            MainProcess    702 DEBUG    "~/src/github/cherrypy/cheroot/__init__.data.json" has not been excluded
flake8.checker            MainProcess    702 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/json/__init__.meta.json" has not been excluded
flake8.checker            MainProcess    702 DEBUG    "~/src/github/cherrypy/cheroot/__init__.meta.json" has not been excluded
flake8.checker            MainProcess    703 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/email" has not been excluded
flake8.checker            MainProcess    703 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/email/mime" has not been excluded
flake8.checker            MainProcess    703 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/email/errors.data.json" has not been excluded
flake8.checker            MainProcess    703 DEBUG    "~/src/github/cherrypy/cheroot/errors.data.json" has not been excluded
flake8.checker            MainProcess    703 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/email/errors.meta.json" has not been excluded
flake8.checker            MainProcess    703 DEBUG    "~/src/github/cherrypy/cheroot/errors.meta.json" has not been excluded
flake8.checker            MainProcess    704 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/email/charset.data.json" has not been excluded
flake8.checker            MainProcess    704 DEBUG    "~/src/github/cherrypy/cheroot/charset.data.json" has not been excluded
flake8.checker            MainProcess    704 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/email/charset.meta.json" has not been excluded
flake8.checker            MainProcess    704 DEBUG    "~/src/github/cherrypy/cheroot/charset.meta.json" has not been excluded
flake8.checker            MainProcess    705 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/email/header.data.json" has not been excluded
flake8.checker            MainProcess    705 DEBUG    "~/src/github/cherrypy/cheroot/header.data.json" has not been excluded
flake8.checker            MainProcess    705 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/email/header.meta.json" has not been excluded
flake8.checker            MainProcess    705 DEBUG    "~/src/github/cherrypy/cheroot/header.meta.json" has not been excluded
flake8.checker            MainProcess    706 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/email/contentmanager.data.json" has not been excluded
flake8.checker            MainProcess    706 DEBUG    "~/src/github/cherrypy/cheroot/contentmanager.data.json" has not been excluded
flake8.checker            MainProcess    706 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/email/contentmanager.meta.json" has not been excluded
flake8.checker            MainProcess    706 DEBUG    "~/src/github/cherrypy/cheroot/contentmanager.meta.json" has not been excluded
flake8.checker            MainProcess    706 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/email/policy.data.json" has not been excluded
flake8.checker            MainProcess    707 DEBUG    "~/src/github/cherrypy/cheroot/policy.data.json" has not been excluded
flake8.checker            MainProcess    707 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/email/policy.meta.json" has not been excluded
flake8.checker            MainProcess    707 DEBUG    "~/src/github/cherrypy/cheroot/policy.meta.json" has not been excluded
flake8.checker            MainProcess    707 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/email/message.data.json" has not been excluded
flake8.checker            MainProcess    707 DEBUG    "~/src/github/cherrypy/cheroot/message.data.json" has not been excluded
flake8.checker            MainProcess    708 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/email/message.meta.json" has not been excluded
flake8.checker            MainProcess    708 DEBUG    "~/src/github/cherrypy/cheroot/message.meta.json" has not been excluded
flake8.checker            MainProcess    708 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/email/utils.data.json" has not been excluded
flake8.checker            MainProcess    708 DEBUG    "~/src/github/cherrypy/cheroot/utils.data.json" has not been excluded
flake8.checker            MainProcess    709 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/email/utils.meta.json" has not been excluded
flake8.checker            MainProcess    709 DEBUG    "~/src/github/cherrypy/cheroot/utils.meta.json" has not been excluded
flake8.checker            MainProcess    709 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/email/__init__.data.json" has not been excluded
flake8.checker            MainProcess    709 DEBUG    "~/src/github/cherrypy/cheroot/__init__.data.json" has not been excluded
flake8.checker            MainProcess    710 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/email/__init__.meta.json" has not been excluded
flake8.checker            MainProcess    710 DEBUG    "~/src/github/cherrypy/cheroot/__init__.meta.json" has not been excluded
flake8.checker            MainProcess    710 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/email/mime" has not been excluded
flake8.checker            MainProcess    710 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/email/mime/__init__.data.json" has not been excluded
flake8.checker            MainProcess    710 DEBUG    "~/src/github/cherrypy/cheroot/__init__.data.json" has not been excluded
flake8.checker            MainProcess    711 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/email/mime/__init__.meta.json" has not been excluded
flake8.checker            MainProcess    711 DEBUG    "~/src/github/cherrypy/cheroot/__init__.meta.json" has not been excluded
flake8.checker            MainProcess    711 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/email/mime/base.data.json" has not been excluded
flake8.checker            MainProcess    711 DEBUG    "~/src/github/cherrypy/cheroot/base.data.json" has not been excluded
flake8.checker            MainProcess    712 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/email/mime/base.meta.json" has not been excluded
flake8.checker            MainProcess    712 DEBUG    "~/src/github/cherrypy/cheroot/base.meta.json" has not been excluded
flake8.checker            MainProcess    712 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/email/mime/nonmultipart.data.json" has not been excluded
flake8.checker            MainProcess    712 DEBUG    "~/src/github/cherrypy/cheroot/nonmultipart.data.json" has not been excluded
flake8.checker            MainProcess    712 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/email/mime/nonmultipart.meta.json" has not been excluded
flake8.checker            MainProcess    713 DEBUG    "~/src/github/cherrypy/cheroot/nonmultipart.meta.json" has not been excluded
flake8.checker            MainProcess    713 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/email/mime/multipart.data.json" has not been excluded
flake8.checker            MainProcess    713 DEBUG    "~/src/github/cherrypy/cheroot/multipart.data.json" has not been excluded
flake8.checker            MainProcess    713 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/email/mime/multipart.meta.json" has not been excluded
flake8.checker            MainProcess    713 DEBUG    "~/src/github/cherrypy/cheroot/multipart.meta.json" has not been excluded
flake8.checker            MainProcess    714 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/email/mime/text.data.json" has not been excluded
flake8.checker            MainProcess    714 DEBUG    "~/src/github/cherrypy/cheroot/text.data.json" has not been excluded
flake8.checker            MainProcess    714 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/email/mime/text.meta.json" has not been excluded
flake8.checker            MainProcess    714 DEBUG    "~/src/github/cherrypy/cheroot/text.meta.json" has not been excluded
flake8.checker            MainProcess    715 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/urllib" has not been excluded
flake8.checker            MainProcess    715 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/urllib/response.data.json" has not been excluded
flake8.checker            MainProcess    715 DEBUG    "~/src/github/cherrypy/cheroot/response.data.json" has not been excluded
flake8.checker            MainProcess    715 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/urllib/response.meta.json" has not been excluded
flake8.checker            MainProcess    715 DEBUG    "~/src/github/cherrypy/cheroot/response.meta.json" has not been excluded
flake8.checker            MainProcess    716 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/urllib/robotparser.data.json" has not been excluded
flake8.checker            MainProcess    716 DEBUG    "~/src/github/cherrypy/cheroot/robotparser.data.json" has not been excluded
flake8.checker            MainProcess    716 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/urllib/robotparser.meta.json" has not been excluded
flake8.checker            MainProcess    716 DEBUG    "~/src/github/cherrypy/cheroot/robotparser.meta.json" has not been excluded
flake8.checker            MainProcess    717 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/urllib/parse.data.json" has not been excluded
flake8.checker            MainProcess    717 DEBUG    "~/src/github/cherrypy/cheroot/parse.data.json" has not been excluded
flake8.checker            MainProcess    717 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/urllib/parse.meta.json" has not been excluded
flake8.checker            MainProcess    717 DEBUG    "~/src/github/cherrypy/cheroot/parse.meta.json" has not been excluded
flake8.checker            MainProcess    718 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/urllib/__init__.data.json" has not been excluded
flake8.checker            MainProcess    718 DEBUG    "~/src/github/cherrypy/cheroot/__init__.data.json" has not been excluded
flake8.checker            MainProcess    718 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/urllib/__init__.meta.json" has not been excluded
flake8.checker            MainProcess    718 DEBUG    "~/src/github/cherrypy/cheroot/__init__.meta.json" has not been excluded
flake8.checker            MainProcess    718 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/urllib/error.data.json" has not been excluded
flake8.checker            MainProcess    719 DEBUG    "~/src/github/cherrypy/cheroot/error.data.json" has not been excluded
flake8.checker            MainProcess    719 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/urllib/error.meta.json" has not been excluded
flake8.checker            MainProcess    719 DEBUG    "~/src/github/cherrypy/cheroot/error.meta.json" has not been excluded
flake8.checker            MainProcess    719 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/urllib/request.data.json" has not been excluded
flake8.checker            MainProcess    720 DEBUG    "~/src/github/cherrypy/cheroot/request.data.json" has not been excluded
flake8.checker            MainProcess    720 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/urllib/request.meta.json" has not been excluded
flake8.checker            MainProcess    720 DEBUG    "~/src/github/cherrypy/cheroot/request.meta.json" has not been excluded
flake8.checker            MainProcess    720 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/os" has not been excluded
flake8.checker            MainProcess    720 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/os/path.data.json" has not been excluded
flake8.checker            MainProcess    720 DEBUG    "~/src/github/cherrypy/cheroot/path.data.json" has not been excluded
flake8.checker            MainProcess    721 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/os/path.meta.json" has not been excluded
flake8.checker            MainProcess    721 DEBUG    "~/src/github/cherrypy/cheroot/path.meta.json" has not been excluded
flake8.checker            MainProcess    721 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/os/__init__.data.json" has not been excluded
flake8.checker            MainProcess    721 DEBUG    "~/src/github/cherrypy/cheroot/__init__.data.json" has not been excluded
flake8.checker            MainProcess    722 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/os/__init__.meta.json" has not been excluded
flake8.checker            MainProcess    722 DEBUG    "~/src/github/cherrypy/cheroot/__init__.meta.json" has not been excluded
flake8.checker            MainProcess    722 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/tkinter" has not been excluded
flake8.checker            MainProcess    722 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/tkinter/constants.data.json" has not been excluded
flake8.checker            MainProcess    722 DEBUG    "~/src/github/cherrypy/cheroot/constants.data.json" has not been excluded
flake8.checker            MainProcess    723 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/tkinter/constants.meta.json" has not been excluded
flake8.checker            MainProcess    723 DEBUG    "~/src/github/cherrypy/cheroot/constants.meta.json" has not been excluded
flake8.checker            MainProcess    723 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/tkinter/__init__.data.json" has not been excluded
flake8.checker            MainProcess    723 DEBUG    "~/src/github/cherrypy/cheroot/__init__.data.json" has not been excluded
flake8.checker            MainProcess    724 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/tkinter/__init__.meta.json" has not been excluded
flake8.checker            MainProcess    724 DEBUG    "~/src/github/cherrypy/cheroot/__init__.meta.json" has not been excluded
flake8.checker            MainProcess    724 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/tkinter/ttk.data.json" has not been excluded
flake8.checker            MainProcess    724 DEBUG    "~/src/github/cherrypy/cheroot/ttk.data.json" has not been excluded
flake8.checker            MainProcess    724 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/tkinter/ttk.meta.json" has not been excluded
flake8.checker            MainProcess    725 DEBUG    "~/src/github/cherrypy/cheroot/ttk.meta.json" has not been excluded
flake8.checker            MainProcess    725 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/html" has not been excluded
flake8.checker            MainProcess    725 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/html/entities.data.json" has not been excluded
flake8.checker            MainProcess    725 DEBUG    "~/src/github/cherrypy/cheroot/entities.data.json" has not been excluded
flake8.checker            MainProcess    725 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/html/entities.meta.json" has not been excluded
flake8.checker            MainProcess    726 DEBUG    "~/src/github/cherrypy/cheroot/entities.meta.json" has not been excluded
flake8.checker            MainProcess    726 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/html/__init__.data.json" has not been excluded
flake8.checker            MainProcess    726 DEBUG    "~/src/github/cherrypy/cheroot/__init__.data.json" has not been excluded
flake8.checker            MainProcess    726 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/html/__init__.meta.json" has not been excluded
flake8.checker            MainProcess    726 DEBUG    "~/src/github/cherrypy/cheroot/__init__.meta.json" has not been excluded
flake8.checker            MainProcess    727 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/html/parser.data.json" has not been excluded
flake8.checker            MainProcess    727 DEBUG    "~/src/github/cherrypy/cheroot/parser.data.json" has not been excluded
flake8.checker            MainProcess    727 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/html/parser.meta.json" has not been excluded
flake8.checker            MainProcess    727 DEBUG    "~/src/github/cherrypy/cheroot/parser.meta.json" has not been excluded
flake8.checker            MainProcess    728 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/http" has not been excluded
flake8.checker            MainProcess    728 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/http/cookies.data.json" has not been excluded
flake8.checker            MainProcess    728 DEBUG    "~/src/github/cherrypy/cheroot/cookies.data.json" has not been excluded
flake8.checker            MainProcess    728 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/http/cookies.meta.json" has not been excluded
flake8.checker            MainProcess    728 DEBUG    "~/src/github/cherrypy/cheroot/cookies.meta.json" has not been excluded
flake8.checker            MainProcess    729 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/http/__init__.data.json" has not been excluded
flake8.checker            MainProcess    729 DEBUG    "~/src/github/cherrypy/cheroot/__init__.data.json" has not been excluded
flake8.checker            MainProcess    729 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/http/__init__.meta.json" has not been excluded
flake8.checker            MainProcess    729 DEBUG    "~/src/github/cherrypy/cheroot/__init__.meta.json" has not been excluded
flake8.checker            MainProcess    730 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/http/server.data.json" has not been excluded
flake8.checker            MainProcess    730 DEBUG    "~/src/github/cherrypy/cheroot/server.data.json" has not been excluded
flake8.checker            MainProcess    730 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/http/server.meta.json" has not been excluded
flake8.checker            MainProcess    730 DEBUG    "~/src/github/cherrypy/cheroot/server.meta.json" has not been excluded
flake8.checker            MainProcess    731 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/http/client.data.json" has not been excluded
flake8.checker            MainProcess    731 DEBUG    "~/src/github/cherrypy/cheroot/client.data.json" has not been excluded
flake8.checker            MainProcess    731 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/http/client.meta.json" has not been excluded
flake8.checker            MainProcess    731 DEBUG    "~/src/github/cherrypy/cheroot/client.meta.json" has not been excluded
flake8.checker            MainProcess    731 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/http/cookiejar.data.json" has not been excluded
flake8.checker            MainProcess    732 DEBUG    "~/src/github/cherrypy/cheroot/cookiejar.data.json" has not been excluded
flake8.checker            MainProcess    732 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/http/cookiejar.meta.json" has not been excluded
flake8.checker            MainProcess    732 DEBUG    "~/src/github/cherrypy/cheroot/cookiejar.meta.json" has not been excluded
flake8.checker            MainProcess    732 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/ctypes" has not been excluded
flake8.checker            MainProcess    732 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/ctypes/__init__.data.json" has not been excluded
flake8.checker            MainProcess    733 DEBUG    "~/src/github/cherrypy/cheroot/__init__.data.json" has not been excluded
flake8.checker            MainProcess    733 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/ctypes/__init__.meta.json" has not been excluded
flake8.checker            MainProcess    733 DEBUG    "~/src/github/cherrypy/cheroot/__init__.meta.json" has not been excluded
flake8.checker            MainProcess    733 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/ctypes/wintypes.data.json" has not been excluded
flake8.checker            MainProcess    733 DEBUG    "~/src/github/cherrypy/cheroot/wintypes.data.json" has not been excluded
flake8.checker            MainProcess    734 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/ctypes/wintypes.meta.json" has not been excluded
flake8.checker            MainProcess    734 DEBUG    "~/src/github/cherrypy/cheroot/wintypes.meta.json" has not been excluded
flake8.checker            MainProcess    734 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/cheroot" has not been excluded
flake8.checker            MainProcess    734 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/cheroot/workers" has not been excluded
flake8.checker            MainProcess    734 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/cheroot/test" has not been excluded
flake8.checker            MainProcess    734 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/cheroot/ssl" has not been excluded
flake8.checker            MainProcess    735 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/cheroot/errors.data.json" has not been excluded
flake8.checker            MainProcess    735 DEBUG    "~/src/github/cherrypy/cheroot/errors.data.json" has not been excluded
flake8.checker            MainProcess    735 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/cheroot/__init__.data.json" has not been excluded
flake8.checker            MainProcess    735 DEBUG    "~/src/github/cherrypy/cheroot/__init__.data.json" has not been excluded
flake8.checker            MainProcess    735 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/cheroot/__init__.meta.json" has not been excluded
flake8.checker            MainProcess    736 DEBUG    "~/src/github/cherrypy/cheroot/__init__.meta.json" has not been excluded
flake8.checker            MainProcess    736 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/cheroot/errors.meta.json" has not been excluded
flake8.checker            MainProcess    736 DEBUG    "~/src/github/cherrypy/cheroot/errors.meta.json" has not been excluded
flake8.checker            MainProcess    736 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/cheroot/workers" has not been excluded
flake8.checker            MainProcess    736 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/cheroot/workers/__init__.data.json" has not been excluded
flake8.checker            MainProcess    737 DEBUG    "~/src/github/cherrypy/cheroot/__init__.data.json" has not been excluded
flake8.checker            MainProcess    737 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/cheroot/workers/__init__.meta.json" has not been excluded
flake8.checker            MainProcess    737 DEBUG    "~/src/github/cherrypy/cheroot/__init__.meta.json" has not been excluded
flake8.checker            MainProcess    737 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/cheroot/workers/threadpool.data.json" has not been excluded
flake8.checker            MainProcess    737 DEBUG    "~/src/github/cherrypy/cheroot/threadpool.data.json" has not been excluded
flake8.checker            MainProcess    738 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/cheroot/workers/threadpool.meta.json" has not been excluded
flake8.checker            MainProcess    738 DEBUG    "~/src/github/cherrypy/cheroot/threadpool.meta.json" has not been excluded
flake8.checker            MainProcess    738 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/cheroot/test" has not been excluded
flake8.checker            MainProcess    738 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/cheroot/test/__init__.data.json" has not been excluded
flake8.checker            MainProcess    738 DEBUG    "~/src/github/cherrypy/cheroot/__init__.data.json" has not been excluded
flake8.checker            MainProcess    739 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/cheroot/test/__init__.meta.json" has not been excluded
flake8.checker            MainProcess    739 DEBUG    "~/src/github/cherrypy/cheroot/__init__.meta.json" has not been excluded
flake8.checker            MainProcess    739 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/cheroot/test/_compat.data.json" has not been excluded
flake8.checker            MainProcess    739 DEBUG    "~/src/github/cherrypy/cheroot/_compat.data.json" has not been excluded
flake8.checker            MainProcess    740 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/cheroot/test/_compat.meta.json" has not been excluded
flake8.checker            MainProcess    740 DEBUG    "~/src/github/cherrypy/cheroot/_compat.meta.json" has not been excluded
flake8.checker            MainProcess    740 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/cheroot/ssl" has not been excluded
flake8.checker            MainProcess    740 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/cheroot/ssl/__init__.data.json" has not been excluded
flake8.checker            MainProcess    740 DEBUG    "~/src/github/cherrypy/cheroot/__init__.data.json" has not been excluded
flake8.checker            MainProcess    741 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/cheroot/ssl/__init__.meta.json" has not been excluded
flake8.checker            MainProcess    741 DEBUG    "~/src/github/cherrypy/cheroot/__init__.meta.json" has not been excluded
flake8.checker            MainProcess    741 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/six" has not been excluded
flake8.checker            MainProcess    741 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/six/moves" has not been excluded
flake8.checker            MainProcess    741 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/six/__init__.data.json" has not been excluded
flake8.checker            MainProcess    741 DEBUG    "~/src/github/cherrypy/cheroot/__init__.data.json" has not been excluded
flake8.checker            MainProcess    742 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/six/__init__.meta.json" has not been excluded
flake8.checker            MainProcess    742 DEBUG    "~/src/github/cherrypy/cheroot/__init__.meta.json" has not been excluded
flake8.checker            MainProcess    742 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/six/moves" has not been excluded
flake8.checker            MainProcess    742 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/six/moves/urllib" has not been excluded
flake8.checker            MainProcess    742 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/six/moves/__init__.data.json" has not been excluded
flake8.checker            MainProcess    743 DEBUG    "~/src/github/cherrypy/cheroot/__init__.data.json" has not been excluded
flake8.checker            MainProcess    743 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/six/moves/__init__.meta.json" has not been excluded
flake8.checker            MainProcess    743 DEBUG    "~/src/github/cherrypy/cheroot/__init__.meta.json" has not been excluded
flake8.checker            MainProcess    743 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/six/moves/urllib" has not been excluded
flake8.checker            MainProcess    743 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/six/moves/urllib/robotparser.data.json" has not been excluded
flake8.checker            MainProcess    744 DEBUG    "~/src/github/cherrypy/cheroot/robotparser.data.json" has not been excluded
flake8.checker            MainProcess    744 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/six/moves/urllib/robotparser.meta.json" has not been excluded
flake8.checker            MainProcess    744 DEBUG    "~/src/github/cherrypy/cheroot/robotparser.meta.json" has not been excluded
flake8.checker            MainProcess    744 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/six/moves/urllib/response.data.json" has not been excluded
flake8.checker            MainProcess    744 DEBUG    "~/src/github/cherrypy/cheroot/response.data.json" has not been excluded
flake8.checker            MainProcess    745 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/six/moves/urllib/response.meta.json" has not been excluded
flake8.checker            MainProcess    745 DEBUG    "~/src/github/cherrypy/cheroot/response.meta.json" has not been excluded
flake8.checker            MainProcess    745 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/six/moves/urllib/parse.data.json" has not been excluded
flake8.checker            MainProcess    745 DEBUG    "~/src/github/cherrypy/cheroot/parse.data.json" has not been excluded
flake8.checker            MainProcess    746 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/six/moves/urllib/parse.meta.json" has not been excluded
flake8.checker            MainProcess    746 DEBUG    "~/src/github/cherrypy/cheroot/parse.meta.json" has not been excluded
flake8.checker            MainProcess    746 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/six/moves/urllib/error.data.json" has not been excluded
flake8.checker            MainProcess    746 DEBUG    "~/src/github/cherrypy/cheroot/error.data.json" has not been excluded
flake8.checker            MainProcess    747 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/six/moves/urllib/error.meta.json" has not been excluded
flake8.checker            MainProcess    747 DEBUG    "~/src/github/cherrypy/cheroot/error.meta.json" has not been excluded
flake8.checker            MainProcess    747 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/six/moves/urllib/request.data.json" has not been excluded
flake8.checker            MainProcess    747 DEBUG    "~/src/github/cherrypy/cheroot/request.data.json" has not been excluded
flake8.checker            MainProcess    748 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/six/moves/urllib/request.meta.json" has not been excluded
flake8.checker            MainProcess    748 DEBUG    "~/src/github/cherrypy/cheroot/request.meta.json" has not been excluded
flake8.checker            MainProcess    748 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/six/moves/urllib/__init__.data.json" has not been excluded
flake8.checker            MainProcess    748 DEBUG    "~/src/github/cherrypy/cheroot/__init__.data.json" has not been excluded
flake8.checker            MainProcess    749 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/six/moves/urllib/__init__.meta.json" has not been excluded
flake8.checker            MainProcess    749 DEBUG    "~/src/github/cherrypy/cheroot/__init__.meta.json" has not been excluded
flake8.checker            MainProcess    749 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/logging" has not been excluded
flake8.checker            MainProcess    749 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/logging/__init__.data.json" has not been excluded
flake8.checker            MainProcess    750 DEBUG    "~/src/github/cherrypy/cheroot/__init__.data.json" has not been excluded
flake8.checker            MainProcess    750 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/logging/__init__.meta.json" has not been excluded
flake8.checker            MainProcess    750 DEBUG    "~/src/github/cherrypy/cheroot/__init__.meta.json" has not been excluded
flake8.checker            MainProcess    750 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/unittest" has not been excluded
flake8.checker            MainProcess    750 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/unittest/__init__.data.json" has not been excluded
flake8.checker            MainProcess    751 DEBUG    "~/src/github/cherrypy/cheroot/__init__.data.json" has not been excluded
flake8.checker            MainProcess    751 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/unittest/__init__.meta.json" has not been excluded
flake8.checker            MainProcess    751 DEBUG    "~/src/github/cherrypy/cheroot/__init__.meta.json" has not been excluded
flake8.checker            MainProcess    751 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/importlib" has not been excluded
flake8.checker            MainProcess    751 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/importlib/abc.data.json" has not been excluded
flake8.checker            MainProcess    752 DEBUG    "~/src/github/cherrypy/cheroot/abc.data.json" has not been excluded
flake8.checker            MainProcess    752 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/importlib/abc.meta.json" has not been excluded
flake8.checker            MainProcess    752 DEBUG    "~/src/github/cherrypy/cheroot/abc.meta.json" has not been excluded
flake8.checker            MainProcess    752 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/importlib/machinery.data.json" has not been excluded
flake8.checker            MainProcess    752 DEBUG    "~/src/github/cherrypy/cheroot/machinery.data.json" has not been excluded
flake8.checker            MainProcess    753 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/importlib/machinery.meta.json" has not been excluded
flake8.checker            MainProcess    753 DEBUG    "~/src/github/cherrypy/cheroot/machinery.meta.json" has not been excluded
flake8.checker            MainProcess    753 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/importlib/util.data.json" has not been excluded
flake8.checker            MainProcess    753 DEBUG    "~/src/github/cherrypy/cheroot/util.data.json" has not been excluded
flake8.checker            MainProcess    754 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/importlib/util.meta.json" has not been excluded
flake8.checker            MainProcess    754 DEBUG    "~/src/github/cherrypy/cheroot/util.meta.json" has not been excluded
flake8.checker            MainProcess    754 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/importlib/__init__.data.json" has not been excluded
flake8.checker            MainProcess    754 DEBUG    "~/src/github/cherrypy/cheroot/__init__.data.json" has not been excluded
flake8.checker            MainProcess    755 DEBUG    "~/src/github/cherrypy/cheroot/.mypy_cache/3.6/importlib/__init__.meta.json" has not been excluded
flake8.checker            MainProcess    755 DEBUG    "~/src/github/cherrypy/cheroot/__init__.meta.json" has not been excluded
flake8.checker            MainProcess    755 DEBUG    "~/src/github/cherrypy/cheroot/dist" has not been excluded
flake8.checker            MainProcess    755 DEBUG    "~/src/github/cherrypy/cheroot/dist/cheroot-6.5.5.dev20+g2b35b8df-py2.py3-none-any.whl" has not been excluded
flake8.checker            MainProcess    755 DEBUG    "~/src/github/cherrypy/cheroot/cheroot-6.5.5.dev20+g2b35b8df-py2.py3-none-any.whl" has not been excluded
flake8.checker            MainProcess    756 DEBUG    "~/src/github/cherrypy/cheroot/.vscode" has not been excluded
flake8.checker            MainProcess    756 DEBUG    "~/src/github/cherrypy/cheroot/.vscode/settings.json" has not been excluded
flake8.checker            MainProcess    756 DEBUG    "~/src/github/cherrypy/cheroot/settings.json" has not been excluded
flake8.checker            MainProcess    756 DEBUG    "~/src/github/cherrypy/cheroot/pip-wheel-metadata" has not been excluded
flake8.checker            MainProcess    756 DEBUG    "~/src/github/cherrypy/cheroot/pip-wheel-metadata/cheroot.dist-info" has not been excluded
flake8.checker            MainProcess    756 DEBUG    "~/src/github/cherrypy/cheroot/pip-wheel-metadata/cheroot.dist-info" has not been excluded
flake8.checker            MainProcess    756 DEBUG    "~/src/github/cherrypy/cheroot/pip-wheel-metadata/cheroot.dist-info/entry_points.txt" has not been excluded
flake8.checker            MainProcess    757 DEBUG    "~/src/github/cherrypy/cheroot/entry_points.txt" has not been excluded
flake8.checker            MainProcess    757 DEBUG    "~/src/github/cherrypy/cheroot/pip-wheel-metadata/cheroot.dist-info/top_level.txt" has not been excluded
flake8.checker            MainProcess    757 DEBUG    "~/src/github/cherrypy/cheroot/top_level.txt" has not been excluded
flake8.checker            MainProcess    757 DEBUG    "~/src/github/cherrypy/cheroot/pip-wheel-metadata/cheroot.dist-info/METADATA" has not been excluded
flake8.checker            MainProcess    757 DEBUG    "~/src/github/cherrypy/cheroot/METADATA" has not been excluded
flake8.checker            MainProcess    758 DEBUG    "~/src/github/cherrypy/cheroot/pip-wheel-metadata/cheroot.dist-info/LICENSE.md" has not been excluded
flake8.checker            MainProcess    758 DEBUG    "~/src/github/cherrypy/cheroot/LICENSE.md" has not been excluded
flake8.checker            MainProcess    758 DEBUG    ".tox" has been excluded
flake8.main.application   MainProcess    758 INFO     Finished running
flake8.main.application   MainProcess    758 INFO     Reporting errors
flake8.main.application   MainProcess    758 INFO     Found a total of 0 violations and reported 0

@webknjaz
Copy link
Member Author

So the above hinted be to look at configs and eventually I landed here: https://flakehell.readthedocs.io/config.html. Adding the example helped. So I guess it needs [tool.flakehell.plugins] in pyproject.toml to work.

@sobolevn https://wemake-python-stylegui.de/en/latest/pages/usage/integrations/flakehell.html only offers to add something to pyproject.toml after running flakehell baseline. It looks like this needs to be fixed in the guide.

@webknjaz
Copy link
Member Author

@sobolevn oh and the default config seems to yell at assert statements in tests which are mandatory in pytest ecosystem. Is there a mainstream way to disable this? Any option in wemake-python-styleguide to specify that some directories contain tests?

@sobolevn
Copy link

@webknjaz thanks! Are you will to update our docs? I always welcome new contributors! πŸŽ‰
Thanks!

About asserts, yes I use this technique: https://github.com/wemake-services/wemake-python-styleguide/blob/master/setup.cfg#L55 So, tests will have their own set of rules.

@sobolevn
Copy link

Or you can even create a separate setup.cfg for tests. That's how I work with js: https://github.com/wemake-services/wemake-vue-template/blob/master/template/tests/.eslintrc.js

@webknjaz
Copy link
Member Author

Sorry, I don't have time to contribute to the docs so I can't promise you that. I just wanted to flag it to you so you'd be aware of the problem.

I'll keep exploring to see if I can fully integrate the style soon.

One more question β€” should I always run flakehell instead or flake8 or can it be picked up automatically somehow?

@webknjaz
Copy link
Member Author

@sobolevn I'm trying to use .flake8 file solely for the Flake8 configuration. When I run flake8, it respects per-file-ignores setting but when I run flakehell lint it doesn't. Looks like a bug in flakehell.

@webknjaz
Copy link
Member Author

webknjaz added a commit that referenced this issue Dec 29, 2019
@webknjaz
Copy link
Member Author

@sobolevn per-file-ignores looks like a blocker here. Any advice?

@sobolevn
Copy link

I hope to finish this task soon https://gitlab.com/pycqa/flake8/issues/602

I have many requests for legacy-first native integrations.

@stale

This comment has been minimized.

@stale stale bot added the stale This thing has been ignored for too long label Feb 29, 2020
@webknjaz webknjaz removed the stale This thing has been ignored for too long label Mar 2, 2020
@webknjaz
Copy link
Member Author

webknjaz commented Mar 3, 2020

@sobolevn any luck with that?

@sobolevn
Copy link

sobolevn commented Mar 4, 2020

Not yet, I will be working on it as a part of 0.15 release.
Currently we are working on 0.14 with python3.8 support.

@stale

This comment has been minimized.

@stale stale bot added the stale This thing has been ignored for too long label May 3, 2020
@webknjaz webknjaz removed the stale This thing has been ignored for too long label May 3, 2020
@stale

This comment has been minimized.

@stale stale bot added the stale This thing has been ignored for too long label Jul 3, 2020
@webknjaz webknjaz removed the stale This thing has been ignored for too long label Jul 3, 2020
@webknjaz
Copy link
Member Author

webknjaz commented Jul 3, 2020

life4/flakehell#40 (comment) -> time to look at flakehell>=0.4.0 again...

@stale

This comment has been minimized.

@stale stale bot added the stale This thing has been ignored for too long label Sep 2, 2020
@stale stale bot closed this as completed Sep 11, 2020
@webknjaz webknjaz reopened this Sep 11, 2020
@stale stale bot removed the stale This thing has been ignored for too long label Sep 11, 2020
@stale

This comment has been minimized.

@stale stale bot added the stale This thing has been ignored for too long label Dec 25, 2020
@webknjaz webknjaz removed the stale This thing has been ignored for too long label Jan 5, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement Improvement good first issue This is what we believe is newcomer-friendly, feel free to contribute! hacktoberfest-accepted DO's annual PR encouragement help wanted Somebody help us, please!
Projects
None yet
Development

No branches or pull requests

2 participants