diff options
author | jaseg <git@jaseg.de> | 2023-04-20 00:46:30 +0200 |
---|---|---|
committer | jaseg <git@jaseg.de> | 2023-04-20 00:46:30 +0200 |
commit | 5ce88e4d1b06dcc846c94ec614fb00f64e85c125 (patch) | |
tree | 30cacf1ffb500c1deebc6b30e8c98d7ec474559a /gerbonara/apertures.py | |
parent | 240e5569aa7521aed321b2607f78d198c36ed8b8 (diff) | |
download | gerbonara-5ce88e4d1b06dcc846c94ec614fb00f64e85c125.tar.gz gerbonara-5ce88e4d1b06dcc846c94ec614fb00f64e85c125.tar.bz2 gerbonara-5ce88e4d1b06dcc846c94ec614fb00f64e85c125.zip |
Fix a bunch of bugs on the way to electroniceel's protoboard layout
Diffstat (limited to 'gerbonara/apertures.py')
-rw-r--r-- | gerbonara/apertures.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gerbonara/apertures.py b/gerbonara/apertures.py index b411412..d5670a2 100644 --- a/gerbonara/apertures.py +++ b/gerbonara/apertures.py @@ -474,7 +474,7 @@ class ApertureMacroInstance(Aperture): macro : object #: The parameters to the :py:class:`.ApertureMacro`. All elements should be floats or ints. The first item in the #: list is parameter ``$1``, the second is ``$2`` etc. - parameters : list + parameters : list = field(default_factory=list) #: Aperture rotation in radians. When saving, a copy of the :py:class:`.ApertureMacro` is re-written with this #: rotation. rotation : float = 0 |