When coding in PyCharm I get a lot of warnings that a function Method [name] may be 'static'. I know you can specify a function is @static, but I don't fully understand the benefit of that. It may be something for someone taking over the project to decide how they want to handle this.
When coding in PyCharm I get a lot of warnings that a function
Method [name] may be 'static'
. I know you can specify a function is@static
, but I don't fully understand the benefit of that. It may be something for someone taking over the project to decide how they want to handle this.