@@ -117,7 +117,9 @@ class Font:
117
117
default layer.
118
118
"""
119
119
120
- _path : Optional [PathLike ] = attr .ib (default = None , metadata = dict (copyable = False ))
120
+ _path : Optional [PathLike ] = attr .ib (
121
+ default = None , metadata = dict (copyable = False ), cmp = False
122
+ )
121
123
122
124
layers : LayerSet = attr .ib (
123
125
factory = LayerSet .default ,
@@ -152,11 +154,15 @@ class Font:
152
154
)
153
155
"""ImageSet: A mapping of image file paths to arbitrary image data."""
154
156
155
- _lazy : Optional [bool ] = attr .ib (default = None , kw_only = True )
156
- _validate : bool = attr .ib (default = True , kw_only = True )
157
+ _lazy : Optional [bool ] = attr .ib (default = None , kw_only = True , cmp = False )
158
+ _validate : bool = attr .ib (default = True , kw_only = True , cmp = False )
157
159
158
- _reader : Optional [UFOReader ] = attr .ib (default = None , kw_only = True , init = False )
159
- _fileStructure : Optional [UFOFileStructure ] = attr .ib (default = None , init = False )
160
+ _reader : Optional [UFOReader ] = attr .ib (
161
+ default = None , kw_only = True , init = False , cmp = False
162
+ )
163
+ _fileStructure : Optional [UFOFileStructure ] = attr .ib (
164
+ default = None , init = False , cmp = False
165
+ )
160
166
161
167
def __attrs_post_init__ (self ) -> None :
162
168
if self ._path is not None :
0 commit comments