Skip to content

Commit 58b3ff5

Browse files
committed
kevm-pyk/gst_to_kore: simplify how chainid is expressed
1 parent 222b34b commit 58b3ff5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kevm-pyk/src/kevm_pyk/gst_to_kore.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def schedule_to_kore(schedule: str) -> str:
1212

1313

1414
def chainid_to_kore(chainid: int) -> str:
15-
return "\\dv{SortInt{}}(" + f'"{chainid}")'
15+
return r'\dv{SortInt{}}("' + str(chainid) + '")'
1616

1717

1818
def mode_to_kore(mode: str) -> str:

0 commit comments

Comments
 (0)