class outer:
class inner:
@staticmethod
def callme():
print('you called me')
outer.inner.callme()
class outer:
class inner:
@staticmethod
def callme():
print('you called me')
outer.inner.callme()