Skip to content

Commit

Permalink
Redefined variables for type security.
Browse files Browse the repository at this point in the history
  • Loading branch information
knutnergaard committed Dec 6, 2024
1 parent 925f688 commit 786656a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Lib/fontParts/base/info.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
class BaseInfo(BaseObject, DeprecatedInfo, RemovedInfo):
from fontTools.ufoLib import fontInfoAttributesVersion3

copyAttributes = set(fontInfoAttributesVersion3)
copyAttributes.remove("guidelines")
copyAttributes = tuple(copyAttributes)
fontInfoAttributes = set(fontInfoAttributesVersion3)
fontInfoAttributes.remove("guidelines")
copyAttributes = tuple(fontInfoAttributes)

def _reprContents(self):
contents = []
Expand Down

0 comments on commit 786656a

Please sign in to comment.