diff options
author | jaseg <git@jaseg.de> | 2022-06-24 16:52:39 +0200 |
---|---|---|
committer | jaseg <git@jaseg.de> | 2022-06-24 16:52:39 +0200 |
commit | b75404efcee92aa68c7eaad85b018174f0902fa0 (patch) | |
tree | ebf569ae9f888467785f225d14e78a03f93bab41 | |
parent | 7bdbe66dc7caf3d27fd13b72a2603b7bca19762d (diff) | |
download | gerbonara-b75404efcee92aa68c7eaad85b018174f0902fa0.tar.gz gerbonara-b75404efcee92aa68c7eaad85b018174f0902fa0.tar.bz2 gerbonara-b75404efcee92aa68c7eaad85b018174f0902fa0.zip |
fix repated aperture macro D code export
-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 0a4bf37..d0e1bcb 100644 --- a/gerbonara/apertures.py +++ b/gerbonara/apertures.py @@ -464,7 +464,7 @@ class ApertureMacroInstance(Aperture): def __eq__(self, other): return hasattr(other, 'macro') and self.macro == other.macro and \ - hasattr(other, 'params') and self.params == other.params and \ + hasattr(other, 'parameters') and self.parameters == other.parameters and \ hasattr(other, 'rotation') and self.rotation == other.rotation def _params(self, unit=None): |