diff options
author | jaseg <git@jaseg.de> | 2022-01-22 19:26:48 +0100 |
---|---|---|
committer | jaseg <git@jaseg.de> | 2022-01-22 19:26:48 +0100 |
commit | 242f4033c661d70c0d2722050370307f4d9b678a (patch) | |
tree | 9076a1d0f45a76c49a465f74903071671006b6de /gerbonara/gerber/apertures.py | |
parent | 7cf41c6a72e52a63b4f4d4497732a72d6623eec8 (diff) | |
download | gerbonara-242f4033c661d70c0d2722050370307f4d9b678a.tar.gz gerbonara-242f4033c661d70c0d2722050370307f4d9b678a.tar.bz2 gerbonara-242f4033c661d70c0d2722050370307f4d9b678a.zip |
Make excellon tests pass
Diffstat (limited to 'gerbonara/gerber/apertures.py')
-rw-r--r-- | gerbonara/gerber/apertures.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/gerbonara/gerber/apertures.py b/gerbonara/gerber/apertures.py index b3e462c..872de9f 100644 --- a/gerbonara/gerber/apertures.py +++ b/gerbonara/gerber/apertures.py @@ -96,9 +96,6 @@ class ExcellonTool(Aperture): plated : bool = None depth_offset : Length(float) = 0 - def __post_init__(self): - print('created', self) - def primitives(self, x, y, unit=None): return [ gp.Circle(x, y, self.unit.convert_to(unit, self.diameter/2)) ] |