From 4c0a57dbae195dc1ad69695a0def2cbeb868de35 Mon Sep 17 00:00:00 2001 From: sjay8 Date: Sun, 9 Mar 2025 14:28:47 -0700 Subject: [PATCH] fixed spacing issues-4 --- agentic_security/http_spec.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agentic_security/http_spec.py b/agentic_security/http_spec.py index 9d1e8d6..673beff 100644 --- a/agentic_security/http_spec.py +++ b/agentic_security/http_spec.py @@ -44,7 +44,6 @@ class LLMSpec(BaseModel): has_audio: bool = False @classmethod - def from_string(cls, http_spec: str): try: return parse_http_spec(http_spec) @@ -147,6 +146,7 @@ def parse_http_spec(http_spec: str) -> LLMSpec: Args: http_spec (str): A string representing an HTTP specification. + Returns: LLMSpec: An object representing the parsed HTTP specification, with attributes for the method, URL, headers, and body. """