You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@autodict currently makes the class behave as a dict so that all atributes can also be accessed as dict items.
side remark: current implementation is maybe (?) overkill for non-slots classes where there is already a __dict__ inside. This is not really an issue for now
some (most?) users might prefer to have a as_dict or to_dict method to convert the object
The text was updated successfully, but these errors were encountered:
@autodict
currently makes the class behave as a dict so that all atributes can also be accessed as dict items.__dict__
inside. This is not really an issue for nowas_dict
orto_dict
method to convert the objectThe text was updated successfully, but these errors were encountered: