diff options
Diffstat (limited to 'gerbonara/cad')
-rw-r--r-- | gerbonara/cad/kicad/base_types.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gerbonara/cad/kicad/base_types.py b/gerbonara/cad/kicad/base_types.py index d800a36..777cf7f 100644 --- a/gerbonara/cad/kicad/base_types.py +++ b/gerbonara/cad/kicad/base_types.py @@ -125,9 +125,7 @@ class Stroke: class WidthMixin: def __post_init__(self): - if self.width is None: - self.width = self.stroke.width - else: + if self.width is not None: self.stroke = Stroke(self.width) |