Why does pylint raises this error: Parsing failed: 'cannot assign to expression here. Maybe you meant '==' instead of '='?

Advertisements While solving some exercises from the "Impractical Python Projects" book I’ve encountered this error: myconfig.pylintrc:6:1: E0001: Parsing failed: ‘cannot assign to expression here. Maybe you meant ‘==’ instead of ‘=’? (<unknown>, line 6)’ (syntax-error) The error occurs while analyzing my code with pylint but doesn’t occur while running it in the console. No errors… Read More Why does pylint raises this error: Parsing failed: 'cannot assign to expression here. Maybe you meant '==' instead of '='?