Describe the bug
When using classmethods in python it's common to use cls rather then self as the first argument of the method.
I can see that flake8-typehinting don't know that so it gives me an error:
TH100 function missing type hints for arguments (cls)
Describe the bug
When using
classmethodsin python it's common to useclsrather thenselfas the first argument of the method.I can see that
flake8-typehintingdon't know that so it gives me an error: