File tree Expand file tree Collapse file tree 3 files changed +5
-1
lines changed
packages/core/python/itkwasm/itkwasm Expand file tree Collapse file tree 3 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -46,6 +46,8 @@ class Mesh:
46
46
numberOfCellPixels : int = 0
47
47
cellData : Optional [ArrayLike ] = None
48
48
49
+ metadata : Dict = field (default_factory = dict )
50
+
49
51
def __post_init__ (self ):
50
52
if isinstance (self .meshType , dict ):
51
53
self .meshType = MeshType (** self .meshType )
Original file line number Diff line number Diff line change @@ -34,6 +34,8 @@ class PointSet:
34
34
numberOfPointPixels : int = 0
35
35
pointData : Optional [ArrayLike ] = None
36
36
37
+ metadata : Dict = field (default_factory = dict )
38
+
37
39
def __post_init__ (self ):
38
40
if isinstance (self .pointSetType , dict ):
39
41
self .pointSetType = PointSetType (** self .pointSetType )
Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ class Transform:
58
58
fixedParameters : Optional [ArrayLike ] = None
59
59
parameters : Optional [ArrayLike ] = None
60
60
61
- metadata : dict = field (default_factory = dict )
61
+ metadata : Dict = field (default_factory = dict )
62
62
63
63
def __post_init__ (self ):
64
64
if isinstance (self .transformType , dict ):
You can’t perform that action at this time.
0 commit comments