This is just an "Is there a better way of doing x?" question about @staticmethod functions in classes using python.
I have the following:
class my_class():
@staticmethod
def function_a():
print("hello")
@staticmethod
def function_b():
my_class.function_a()
Obviously with static classes you have no "self" reference, but is there another way to reference functions inside a class without using the class name "my_class.xxxxx"?
Most other languages have a different version, for example php has $this-> for inheritance and self:: for static.