-
Notifications
You must be signed in to change notification settings - Fork 12
Open
Description
Regarding
Lines 248 to 249 in 32e3043
| # TODO: Once py38 is dropped, re-enable the default value setting | |
| U: List[List[float]] # = field(default_factory=list[list[float]]) |
Is py38 the issue, or is it because DCReflection is not a dataclass?
I believe the default_factory field should be a zero-argument callable, such as...
default_factory=lambda: [[]] # list containing an empty listOriginally posted by @padraic-shafer in #317 (comment)