Skip to content
This repository was archived by the owner on Apr 25, 2024. It is now read-only.

Commit 7f72149

Browse files
ehildenbrv-auditor
andauthored
kcfg/explore: make kcfg_semantics optional (#555)
Make the `kcfg_semantics` field optional in `KCFGExplore`. --------- Co-authored-by: devops <[email protected]>
1 parent 73c7fc8 commit 7f72149

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

package/version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.1.383
1+
0.1.384

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
44

55
[tool.poetry]
66
name = "pyk"
7-
version = "0.1.383"
7+
version = "0.1.384"
88
description = ""
99
authors = [
1010
"Runtime Verification, Inc. <[email protected]>",

src/pyk/kcfg/explore.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ class KCFGExplore(ContextManager['KCFGExplore']):
6767
def __init__(
6868
self,
6969
kprint: KPrint,
70-
kcfg_semantics: KCFGSemantics | None,
7170
*,
71+
kcfg_semantics: KCFGSemantics | None = None,
7272
id: str | None = None,
7373
port: int | None = None,
7474
kore_rpc_command: str | Iterable[str] | None = None,

0 commit comments

Comments
 (0)