Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
Related #68
  • Loading branch information
realthunder committed Jul 29, 2023
1 parent a429bb2 commit 122ff2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kicad.py
Original file line number Diff line number Diff line change
Expand Up @@ -1720,7 +1720,7 @@ def _face(obj,name,label=None):

def filter_unconnected(v, at):
if 'remove_unused_layers' in v:
excludes = [self.findLayers(s)[0] for s in getattr(v, 'zone_layer_connections', [])]
excludes = [self.findLayer(s)[0] for s in getattr(v, 'zone_layer_connections', [])]
if self.layer_type not in excludes:
nonlocal track_points
if track_points is None:
Expand Down

0 comments on commit 122ff2e

Please sign in to comment.