I have the following two classes A and B. How do I make the do_someting() method call the overriden method, some_method(), in B. Is this doable in Python?
class A:
@staticmethod
def some_method()
# pass
return
@classmethod
def do_something():
A.some_method()
...
return
class B(A):
@staticmethod
def some_method()
# how does do_something call here?
return
@classmethod
def run()
B.do_something()
return