flake8 plugin that checks rules regarding the staticmethod and classmethod decorators.
Project description
flake8-classmethod-staticmethod
flake8 plugin that checks rules regarding the staticmethod and classmethod decorators.
Options
The plugin offers one flag, --select_csm1, accepting a list of error
codes (see below) to be enabled. By default, the enabled errors
are CSM101 and CSM131.
Error Codes
CSM100
@staticmethod should not be used.
CSM101
A method marked as @staticmethod should not reference the class it
is defined in. Use @classmethod otherwise.
Bad
class MyClass:
@staticmethod
def my_name():
return MyClass.__name__
Good
class MyClass:
@classmethod
def my_name(cls):
return cls.__name__
CSM102
Do not inherit and override a method marked as @staticmethod.
Bad
class MyClass:
@staticmethod
def my_name():
return "MyClass"
class MyChild:
@staticmethod
def my_name():
return "MyChild"
Good
class MyClass:
@classmethod
def my_name(cls):
return cls.__name__
CSM130
@classmethod should not be used.
CSM131
A method marked as @classmethod should access the parameter cls.
Use @staticmethod otherwise.
A special case that is exempt is a method that has a call to super().
Bad
class MyClass:
@classmethod
def my_name(cls):
return "MyClass"
Good
class MyClass:
@staticmethod
def my_name():
return "MyClass"
CSM132
A method marked as @classmethod should not reference the class it
is defined in. Use the cls parameter.
class MyClass:
@classmethod
def my_name(cls):
return MyClass.__name__
Good
class MyClass:
@classmethod
def my_name(cls):
return cls.__name__
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file flake8_classmethod_staticmethod-2.1.tar.gz.
File metadata
- Download URL: flake8_classmethod_staticmethod-2.1.tar.gz
- Upload date:
- Size: 4.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
26eba8e11e44f7f6a41cca49bf875e3e7d1ef8b06de84ebf496bb9b6845d3d52
|
|
| MD5 |
52be68f9623eb9e8bdd92928258b779d
|
|
| BLAKE2b-256 |
cd5e35b53a5fb9e490260365b03443065b68221d5596970579807bf560e37bf2
|
File details
Details for the file flake8_classmethod_staticmethod-2.1-py3-none-any.whl.
File metadata
- Download URL: flake8_classmethod_staticmethod-2.1-py3-none-any.whl
- Upload date:
- Size: 4.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
44ca4822be9e403456d650c3edba0b2805dcd51f10dbe5bde05b8b104ffcd74f
|
|
| MD5 |
2edbc9a257f6f433a266bd1bbd40d726
|
|
| BLAKE2b-256 |
2cefb7292f6a3146d86bd2be38ec35db5c53116f4511b4ed92d585c06ef46b97
|