Skip to content

Commit b906a08

Browse files
committed
Fix method signature
1 parent e599277 commit b906a08

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/kimp/kimp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def same_loop(self, c1: CTerm, c2: CTerm) -> bool:
7373
def can_make_custom_step(self, c: CTerm) -> bool:
7474
return False
7575

76-
def custom_step(self, c: CTerm, cs: CTermSymbolic) -> KCFGExtendResult | None:
76+
def custom_step(self, c: CTerm, cs: CTermSymbolic, node_id: int) -> KCFGExtendResult | None:
7777
return None
7878

7979
def is_mergeable(self, c1: CTerm, c2: CTerm) -> bool:

0 commit comments

Comments
 (0)