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
Certain dataclass attributes have names that are not intuitive. This is because the dacite python package can only convert dictionaries to dataclasses if the key name is exactly the same as the class attribute.
This results in crap names like Tag.tag when it should be more appropriately named Tag.name.
The text was updated successfully, but these errors were encountered:
Certain dataclass attributes have names that are not intuitive. This is because the dacite python package can only convert dictionaries to dataclasses if the key name is exactly the same as the class attribute.
This results in crap names like
Tag.tag
when it should be more appropriately namedTag.name
.The text was updated successfully, but these errors were encountered: