Skip to content

Commit

Permalink
Improve internal method name
Browse files Browse the repository at this point in the history
  • Loading branch information
justvanrossum committed Sep 2, 2023
1 parent 35f02ec commit 83aa3af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/fontra/backends/designspace.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def __init__(self, dsDoc):
for axisName, polePosition in axisPolePositions.items()
}
self.loadUFOLayers()
self.buildFileNameMapping()
self.buildGlyphFileNameMapping()
self.glyphMap = getGlyphMapFromGlyphSet(self.defaultDSSource.layer.glyphSet)
self.savedGlyphModificationTimes = {}

Expand Down Expand Up @@ -150,7 +150,7 @@ def loadUFOLayers(self):
)
)

def buildFileNameMapping(self):
def buildGlyphFileNameMapping(self):
glifFileNames = {}
for glyphSet in self.ufoLayers.iterAttrs("glyphSet"):
for glyphName, fileName in glyphSet.contents.items():
Expand Down

0 comments on commit 83aa3af

Please sign in to comment.