Open superstes opened 1 day ago
Boolean comparisons should not be done via == in python. See: https://peps.python.org/pep-0008/#programming-recommendations
==
Don’t compare boolean values to True or False using ==: # Correct: if greeting: # Wrong: if greeting == True: # Wrong: if greeting is True:
Related to https://github.com/LOUDO56/PyMacroRecord/issues/59 as linting would ensure such recommendations are followed.
nobody cares about that, this PR is completely useless
Boolean comparisons should not be done via
==
in python. See: https://peps.python.org/pep-0008/#programming-recommendations