How can I define static class members by using other static members? for instance:
class Somefuncs:
@staticmethod
def foo():
print('foo was called')
functs_dict={'foo':Somefuncs.foo}
makes the interpreter raise the Exception: Unresolved reference 'Somefuncs' even though I'm defining funct_dict within the class Somefuncs!