Skip to content

Commit

Permalink
Rename func
Browse files Browse the repository at this point in the history
  • Loading branch information
justvanrossum committed Sep 5, 2023
1 parent fee6191 commit 8985d7a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/fontra/backends/copy.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
logger = logging.getLogger(__name__)


async def copy(sourceBackend, destBackend, *, numTasks=8):
async def copyFont(sourceBackend, destBackend, *, numTasks=8):
await destBackend.putGlobalAxes(await sourceBackend.getGlobalAxes())
glyphMap = await sourceBackend.getGlyphMap()
glyphNamesToCopy = sorted(glyphMap)
Expand Down Expand Up @@ -63,7 +63,7 @@ async def mainAsync():
sourceBackend = getFileSystemBackend(sourcePath)
destBackend = newFileSystemBackend(destPath)

await copy(sourceBackend, destBackend)
await copyFont(sourceBackend, destBackend)


def main():
Expand Down

0 comments on commit 8985d7a

Please sign in to comment.