I need to extract self/instance of class outside the class. it supplies self__class__
but no instance or self passed here:
class AA:
def aa_method(self):
bb(self.__class__, **kwargs)
def extrarcat_self(cls, **kwargs):
how i can get self/instance here?