Skip to content

Commit

Permalink
Fix escapes
Browse files Browse the repository at this point in the history
Saves a SyntaxWarning in Python 3.12
  • Loading branch information
RickyDaMa committed Dec 19, 2024
1 parent f7057fa commit 6d2b5f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/gftools/builder/operations/autohintOTF.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@

class AutohintOTF(OperationBase):
description = "Run otfautohint"
rule = "otfautohint $args -o $out $in \|\| otfautohint $args -o $out $in --no-zones-stems"
rule = r"otfautohint $args -o $out $in \|\| otfautohint $args -o $out $in --no-zones-stems"

0 comments on commit 6d2b5f8

Please sign in to comment.