corpnewt / gibMacOS

Py2/py3 script that can download macOS components direct from Apple
MIT License
5.85k stars 775 forks source link

removed a singleton-comparison pitfall #244

Open NaelsonDouglas opened 2 years ago

NaelsonDouglas commented 2 years ago

The problem In Python when comparing to singletons, the use of the operator 'is' instead of '==' is encouraged. This pitfall was detected using Pylint, under the code C0121 More about it can be found here: https://vald-phoenix.github.io/pylint-errors/plerr/errors/basic/C0121.html

Solution Replaced '==' to 'is' when comparing to singletons