Closed egoriyaa closed 2 months ago
Now __repr__ of BaseMixin doesn't support property attributes, but we want this.
__repr__
BaseMixin
So, we can replace self.__dict__[arg] with getattr(self, arg) in BaseMixin and other places where self.__dict__[arg] is used.
self.__dict__[arg]
getattr(self, arg)
No response
🚀 Task description
Now
__repr__
ofBaseMixin
doesn't support property attributes, but we want this.Plan
So, we can replace
self.__dict__[arg]
withgetattr(self, arg)
inBaseMixin
and other places whereself.__dict__[arg]
is used.Test cases
No response
Additional context
No response