class a:
@staticmethod
def aa():
# find class b name
pass
class b:
object = a()
b.object.aa()
I want to get the name of the class b inside of the aa method of class a because the aa method is static method I cant pass arguments like self in here.