According to this pylint-wiki, it seems that 2 letter variable names are ok:
Variable variable-rgx [a-z_][a-z0-9_]{2,30}$
But for some reason I get the following error:
Variable name "fl" doesn't conform to snake_case naming style (invalid-name)
According to this pylint-wiki, it seems that 2 letter variable names are ok:
Variable variable-rgx [a-z_][a-z0-9_]{2,30}$
But for some reason I get the following error:
Variable name "fl" doesn't conform to snake_case naming style (invalid-name)
The regular expression says:
In total this sums up to at least 3 characters per variable name.