noseka1 / linuxband

GUI front-end for MMA (Musical MIDI Accompaniment)
linuxband.org
GNU General Public License v2.0
26 stars 15 forks source link

[PEP8] Operator improvements #25

Closed jensrudolf closed 4 years ago

jensrudolf commented 4 years ago

This commit improves a little bit on operator usage. E.g. it changes comparisons to None using '==' or '!=' to 'is' and 'is not' respectively. Furthermore, it replaces '<>' with '!='.

noseka1 commented 4 years ago

Thanks!