Skip to content

Commit

Permalink
Merge pull request #161 from googlefonts/rename-used-by
Browse files Browse the repository at this point in the history
Rename used-by method to something less ambiguous
  • Loading branch information
justvanrossum authored Mar 17, 2024
2 parents bd3513e + 2351f35 commit b8073e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fontra_rcjk/backend_mysql.py
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@ async def deleteGlyph(self, glyphName: str) -> None:
del self._glyphMap[glyphName]
self._glyphCache.pop(glyphName, None)

async def getGlyphsUsedBy(self, glyphName: str) -> list[str]:
async def findGlyphsThatUseGlyph(self, glyphName: str) -> list[str]:
glyphInfo = self._rcjkGlyphInfo.get(glyphName)
if glyphInfo is None:
return []
Expand Down

0 comments on commit b8073e5

Please sign in to comment.