Skip to content

Commit

Permalink
Fix SyntaxWarning
Browse files Browse the repository at this point in the history
This commit remove an invalid escape sequence.
  • Loading branch information
eamanu committed Oct 22, 2024
1 parent 8883d74 commit 66f036d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apycula/gowin_pack.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def sanitize_name(name):
retname = name[:-4]
if _verilog_name.fullmatch(retname):
return retname
return f"\{retname} "
return fr"\{retname} "

def extra_pll_bels(cell, row, col, num, cellname):
# rPLL can occupy several cells, add them depending on the chip
Expand Down

0 comments on commit 66f036d

Please sign in to comment.