Skip to content

Commit 121d564

Browse files
committed
style: streamline code formatting in operator.py for improved readability
1 parent a001a33 commit 121d564

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

agentic_security/probe_actor/operator.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
logging.basicConfig(level=logging.INFO)
1212
logger = logging.getLogger(__name__)
1313

14+
1415
class AgentSpecification(BaseModel):
1516
name: str | None = Field(None, description="Name of the LLM/agent")
1617
version: str | None = Field(None, description="Version of the LLM/agent")
@@ -19,9 +20,7 @@ class AgentSpecification(BaseModel):
1920
configuration: dict[str, Any] | None = Field(
2021
None, description="Configuration settings"
2122
)
22-
endpoint: str | None = Field(
23-
None, description="Endpoint URL of the deployed agent"
24-
)
23+
endpoint: str | None = Field(None, description="Endpoint URL of the deployed agent")
2524

2625

2726
class OperatorToolBox:

0 commit comments

Comments
 (0)