What is the pythonic way to call a static method from within the class?
class SomeClass:
@staticmethod
def do_something(x: int) -> int:
return 2*x + 17
def foo(self) -> None:
print(self.do_something(52)) # <--- this one?
print(SomeClass.do_something(52)) # <--- or that one?