From 87cb4c5981cb4b41071d82aec392dca458c86104 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 19 Feb 2026 22:08:30 +0000 Subject: [PATCH 1/2] Initial plan From 3903490f0bb9e15bf46fd28abdff3e91ed710453 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 19 Feb 2026 22:10:04 +0000 Subject: [PATCH 2/2] Add from __future__ import annotations to empty_string_error.py Co-authored-by: pmalarme <686568+pmalarme@users.noreply.github.com> --- .../agents/agent1/validators/errors/empty_string_error.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/agents/agent1/src/python_agent_template/agents/agent1/validators/errors/empty_string_error.py b/agents/agent1/src/python_agent_template/agents/agent1/validators/errors/empty_string_error.py index 3b582e5..51074dd 100644 --- a/agents/agent1/src/python_agent_template/agents/agent1/validators/errors/empty_string_error.py +++ b/agents/agent1/src/python_agent_template/agents/agent1/validators/errors/empty_string_error.py @@ -1,5 +1,7 @@ """Exception raised for empty string values.""" +from __future__ import annotations + class EmptyStringError(ValueError): """Raised when a string is empty after trimming whitespace."""