Skip to content

Commit

Permalink
Fix typing error
Browse files Browse the repository at this point in the history
  • Loading branch information
justvanrossum committed Oct 25, 2024
1 parent 92f23ef commit d8535a9
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/fontra_compile/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,7 @@ async def main_async() -> None:
args = parser.parse_args()
sourceFontPath = pathlib.Path(args.source_font).resolve()
outputFontPath = pathlib.Path(args.output_font).resolve()
glyphNames = (
args.glyph_names.replace(",", " ").split() if args.glyph_names else None
)
glyphNames = args.glyph_names.replace(",", " ").split() if args.glyph_names else []

reader = getFileSystemBackend(sourceFontPath)
builder = Builder(
Expand Down

0 comments on commit d8535a9

Please sign in to comment.