adrienverge / localstripe

A fake but stateful Stripe server that you can run locally, for testing purposes.
GNU General Public License v3.0
192 stars 59 forks source link

style: Compare Python types with `is`, not `==` #218

Closed adrienverge closed 1 year ago

adrienverge commented 1 year ago

The right way to compare primitive types in Python is to use the exact comparison is.

This shuts up the flake8 linter, currently complaining on master branch.