Skip to content

Commit

Permalink
Fix error caught by flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelsousa committed Mar 13, 2023
1 parent 3c188b0 commit 2849585
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/opentypesvg/dumpsvg.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def processFont(fontPath, outputFolderPath, options):
if options.reset_viewbox:
svgItemData = resetViewBox(svgItemData)

while(startGID != endGID + 1):
while (startGID != endGID + 1):
try:
gName = glyphOrder[startGID]
except IndexError:
Expand Down

0 comments on commit 2849585

Please sign in to comment.