Skip to content

Commit 66f036d

Browse files
committed
Fix SyntaxWarning
This commit remove an invalid escape sequence.
1 parent 8883d74 commit 66f036d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apycula/gowin_pack.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def sanitize_name(name):
6565
retname = name[:-4]
6666
if _verilog_name.fullmatch(retname):
6767
return retname
68-
return f"\{retname} "
68+
return fr"\{retname} "
6969

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

0 commit comments

Comments
 (0)