From c71338082e8a6dba3fcbaa09489fa8e66c271b03 Mon Sep 17 00:00:00 2001 From: Thomas Chopitea Date: Mon, 14 Apr 2025 11:27:01 +0000 Subject: [PATCH 1/2] Fix return type --- yeti/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yeti/api.py b/yeti/api.py index 5625b24..3a63e47 100644 --- a/yeti/api.py +++ b/yeti/api.py @@ -280,7 +280,7 @@ def get_yara_bundle_with_overlays( tags: list[str] | None = None, exclude_tags: list[str] | None = None, overlays: list[str] | None = None, - ) -> str: + ) -> dict[str, str]: """Gets a Yara bundle with overlays. Args: From 612bfabd2e60b0f81f32ea36230b85f2da1f6d58 Mon Sep 17 00:00:00 2001 From: Thomas Chopitea Date: Mon, 14 Apr 2025 11:27:21 +0000 Subject: [PATCH 2/2] Bump version once again --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 619bfb0..1b2eebf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "yeti-python" -version = "2.0.6" +version = "2.0.7" description = "Python bindings for the Yeti API" authors = ["tomchop"] license = "Apache"