PyCQA / flake8-bugbear

A plugin for Flake8 finding likely bugs and design problems in your program. Contains warnings that don't belong in pyflakes and pycodestyle.
MIT License
1.06k stars 104 forks source link

B032: Possible unintentional type annotations instead of assignments #350

Closed FozzieHi closed 1 year ago

FozzieHi commented 1 year ago

This lint checks for possibly mistakenly using : (for type annotations) instead of = (for assigning).

Closes #312.