yukinarit / pyserde

Yet another serialization library on top of dataclasses, inspired by serde-rs.
https://yukinarit.github.io/pyserde/guide/en
MIT License
711 stars 40 forks source link

Fix InitVar with field attribute #584

Closed yukinarit closed 4 weeks ago

yukinarit commented 4 weeks ago

It seems should_impl_dataclass does not take InitVar into account, which causes field attributes not working properly. This fixes that issue.

Closes #581, #582