Skip to content

Commit

Permalink
Fix mypy complaints
Browse files Browse the repository at this point in the history
  • Loading branch information
justvanrossum committed Mar 20, 2024
1 parent 14eff2e commit 1eed8ce
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/fontra_compile/compile_fontmake_action.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ async def connect(
self.input = None

async def process(self, outputDir: os.PathLike = pathlib.Path()) -> None:
assert self.input is not None
outputDir = pathlib.Path(outputDir)
outputFontPath = outputDir / self.destination

Expand All @@ -47,7 +48,7 @@ async def process(self, outputDir: os.PathLike = pathlib.Path()) -> None:
command = [
"fontmake",
"-m",
designspacePath,
os.fspath(designspacePath),
"-o",
"variable",
"--output-path",
Expand Down

0 comments on commit 1eed8ce

Please sign in to comment.