summaryrefslogtreecommitdiff
path: root/gerbonara
diff options
context:
space:
mode:
Diffstat (limited to 'gerbonara')
-rw-r--r--gerbonara/cad/kicad/base_types.py4
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)