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

Commit

Permalink
kcfg/explore: make kcfg_semantics optional (#555)
Browse files Browse the repository at this point in the history
Make the `kcfg_semantics` field optional in `KCFGExplore`.

---------

Co-authored-by: devops <devops@runtimeverification.com>
  • Loading branch information
ehildenb and devops authored Jul 26, 2023
1 parent 73c7fc8 commit 7f72149
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.383
0.1.384
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "pyk"
version = "0.1.383"
version = "0.1.384"
description = ""
authors = [
"Runtime Verification, Inc. <contact@runtimeverification.com>",
Expand Down
2 changes: 1 addition & 1 deletion src/pyk/kcfg/explore.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ class KCFGExplore(ContextManager['KCFGExplore']):
def __init__(
self,
kprint: KPrint,
kcfg_semantics: KCFGSemantics | None,
*,
kcfg_semantics: KCFGSemantics | None = None,
id: str | None = None,
port: int | None = None,
kore_rpc_command: str | Iterable[str] | None = None,
Expand Down

0 comments on commit 7f72149

Please sign in to comment.