Skip to content

Latest commit

 

History

History
54 lines (36 loc) · 1.33 KB

README.md

File metadata and controls

54 lines (36 loc) · 1.33 KB

flake8-breakpoint

pypi Python: 3.6+ Downloads Build Status Code coverage License: MIT Code style: black

Flake8 plugin that check forgotten breakpoints.

Installation

pip install flake8-breakpoint

Errors

  • B601 builtin function "breakpoint" found
def function():
    breakpoint()  # error!
  • B602 import of debug module found
def function():
    import pdb  # error! or ipdb/pudb

License

MIT

Change Log

Unreleased

  • ...

1.1.0 - 2019-05-23

  • update flask_plugin_utils version to 1.0

1.0.0 - 2019-04-02

  • initial