Skip to content

Commit 63b82b0

Browse files
committed
Remove unused private attribute from KProve
This eliminates a (package level) circularity between `kcfg` and `ktool`.
1 parent dbf9704 commit 63b82b0

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

pyk/src/pyk/ktool/kprove.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@
3030

3131
from ..kast.outer import KClaim, KRule, KRuleLike
3232
from ..kast.pretty import SymbolTable
33-
from ..kcfg import KCFGExplore
3433
from ..utils import BugReport
3534

3635
_LOGGER: Final = logging.getLogger(__name__)
@@ -160,7 +159,6 @@ class KProve(KPrint):
160159
main_file: Path | None
161160
prover: list[str]
162161
prover_args: list[str]
163-
_kcfg_explore: KCFGExplore | None
164162

165163
def __init__(
166164
self,
@@ -183,7 +181,6 @@ def __init__(
183181
self.main_file = main_file
184182
self.prover = [command]
185183
self.prover_args = []
186-
self._kcfg_explore = None
187184

188185
def prove(
189186
self,

0 commit comments

Comments
 (0)