kiwi-el8/helper
Alberto Planas 0c095a98b1 Replace @staticmethod with @classmethod when needed
@classmethod are used in Python to represent methods that can
query and update the class (cls parameter). Is expected to be
used for metaprograming, or advanced techniques that require the
access to the class itself, before we have an instance.

@staticmethod are used to associate a function to a class. It will
not be have access to the instance (self) not the class (cls). In
other programming languages are known as class methods.

This patch replace all the @classmethod with @staticmethod when
there is not need to access to the cls parameter, because the
intention is to be used as normal functions.
2019-03-26 16:27:43 +01:00
..
attributes_not_used.sh Introduce better changelog handling 2019-03-13 09:26:40 +01:00
completion_generator.py Fixed code smells on completion_generator 2019-03-13 09:59:47 +01:00
rebuild_changelog_reference.sh Refactor incremental changelog update 2019-03-15 20:56:19 +01:00
schema_docs.conf Build schema documentation with Oxygen 2017-06-29 10:38:45 +02:00
schema_docs.sh Update schema version in free schema doc generator 2018-03-23 15:05:12 +01:00
schema_parser.py Replace @staticmethod with @classmethod when needed 2019-03-26 16:27:43 +01:00
update_changelog.py Refactor incremental changelog update 2019-03-15 20:56:19 +01:00