afonasev / flake8-breakpoint

Flake8 plugin that check forgotten breakpoints
MIT License
14 stars 1 forks source link

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

def function():
    breakpoint()  # error!
def function():
    import pdb  # error! or ipdb/pudb

License

MIT

Change Log

Unreleased

1.1.0 - 2019-05-23

1.0.0 - 2019-04-02