Skip to content

Commit 8058197

Browse files
HeshamHM28claude
andcommitted
fix: add VOID_STATE to VerificationType enum
Instrumentation writes verification_type="void_state" for void methods, but the enum lacked this value, causing ValueError on every SQLite row parse. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent f352f99 commit 8058197

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

codeflash/models/models.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -740,6 +740,7 @@ class VerificationType(str, Enum):
740740
)
741741
INIT_STATE_FTO = "init_state_fto" # Correctness verification for fto class instance attributes after init
742742
INIT_STATE_HELPER = "init_state_helper" # Correctness verification for helper class instance attributes after init
743+
VOID_STATE = "void_state" # Correctness verification for void methods (no return value)
743744

744745

745746
@dataclass(frozen=True, slots=True)

0 commit comments

Comments
 (0)