📅 You're Invited: Meet the Socket team at RSAC (April 28 – May 1).RSVP
Socket
Sign inDemoInstall
Socket

flake8-breakpoint

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

flake8-breakpoint

Flake8 plugin that check forgotten breakpoints

1.1.0
PyPI
Maintainers
1

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

Keywords

flake8

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts