From 2de0d7e092bb8af06052b095e9e1e141dcaf1b89 Mon Sep 17 00:00:00 2001 From: Chris Eubank <108756251+christianeu-db@users.noreply.github.com> Date: Thu, 17 Sep 2026 18:37:53 +0000 Subject: [PATCH] docs(sigma): update quickstart from to_osi_yaml() -> to_ossie_yaml() The Python quickstart in converters/sigma/README.md calls result.output.to_osi_yaml(), which does not exist. Correct it to to_ossie_yaml() as part of the OSI -> Ossie rename. This is the method name used by the Sigma converter CLI and the round-trip tests. Co-authored-by: Isaac --- converters/sigma/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/converters/sigma/README.md b/converters/sigma/README.md index f923bf41..ffe62fc1 100644 --- a/converters/sigma/README.md +++ b/converters/sigma/README.md @@ -67,7 +67,7 @@ spec = json.loads(Path("data_model.json").read_text()) result = SigmaToOssieConverter().convert(spec) for issue in result.issues: print(f"[warning] {issue.issue_type.value}: {issue.element_name}") -Path("semantic_model.yaml").write_text(result.output.to_osi_yaml()) +Path("semantic_model.yaml").write_text(result.output.to_ossie_yaml()) # Ossie -> Sigma from ossie import OssieDocument