Python

Python

Made by DeepSource

Consider decorating method with @staticmethod PYL-R0201

Performance
Major
Autofix

The method doesn't use its bound instance. Decorate this method with @staticmethod decorator, so that Python does not have to instantiate a bound method for every instance of this class thereby saving memory and computation. Read more about staticmethods here.