Skip to content
This repository has been archived by the owner on Aug 9, 2024. It is now read-only.

Commit

Permalink
Fix typos (#212)
Browse files Browse the repository at this point in the history
  • Loading branch information
heitzmann committed Jun 2, 2022
1 parent 06b9238 commit 15fc2f0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions gdspy/library.py
Original file line number Diff line number Diff line change
Expand Up @@ -518,10 +518,10 @@ def get_texttypes(self):
"""
texttypes = set()
for reference in self.references:
textypes.update(reference.ref_cell.get_textypes())
texttypes.update(reference.ref_cell.get_textypes())
for label in self.labels:
textypes.add(label.texttype)
return textypes
texttypes.add(label.texttype)
return texttypes

def get_svg_classes(self):
"""
Expand Down

0 comments on commit 15fc2f0

Please sign in to comment.