From 1fdc1eb8de8a71a7a328ad8085597004a6d983a7 Mon Sep 17 00:00:00 2001 From: Alexander Myasoedov Date: Thu, 20 Feb 2025 23:35:12 +0200 Subject: [PATCH] feat(fix linter): --- agentic_security/http_spec.py | 3 ++- pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/agentic_security/http_spec.py b/agentic_security/http_spec.py index 37bd580..addd264 100644 --- a/agentic_security/http_spec.py +++ b/agentic_security/http_spec.py @@ -27,7 +27,8 @@ def encode_audio_base64_by_url(url: str) -> str: return "data:audio/mpeg;base64," + encoded_content -class InvalidHTTPSpecError(Exception): ... +class InvalidHTTPSpecError(Exception): + ... class LLMSpec(BaseModel): diff --git a/pyproject.toml b/pyproject.toml index 86cc31e..dc7ab19 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "agentic_security" -version = "0.5.0" +version = "0.5.1" description = "Agentic LLM vulnerability scanner" authors = ["Alexander Miasoiedov "] maintainers = ["Alexander Miasoiedov "]