eyurtsev / FlowCytometryTools

A python package for visualization and analysis of high-throughput flow cytometry data
https://eyurtsev.github.io/FlowCytometryTools/
MIT License
113 stars 46 forks source link

Remove use of "is" to compare with literals. #28

Closed rpgoldman closed 3 years ago

rpgoldman commented 3 years ago

This idiom (formerly ok?) now causes a SyntaxWarning.

Replacing the use of is to compare with a constant by == causes the syntax warning to go away.

eyurtsev commented 3 years ago

Thanks for the PR!