From 28abc306c3d907423efe8bd33deaebe84e090ff0 Mon Sep 17 00:00:00 2001 From: "Wei Sun (Jack)" Date: Tue, 6 May 2025 09:57:38 -0700 Subject: [PATCH] chore: fixes type hint in base_artifact_service.py `pass` is not required when docstring exists. PiperOrigin-RevId: 755413158 --- src/google/adk/artifacts/base_artifact_service.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/google/adk/artifacts/base_artifact_service.py b/src/google/adk/artifacts/base_artifact_service.py index 8d14fcb..249df96 100644 --- a/src/google/adk/artifacts/base_artifact_service.py +++ b/src/google/adk/artifacts/base_artifact_service.py @@ -12,7 +12,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -"""Abstract base class for artifact services.""" from abc import ABC from abc import abstractmethod @@ -78,7 +77,6 @@ class BaseArtifactService(ABC): Returns: The artifact or None if not found. """ - pass @abstractmethod async def list_artifact_keys( @@ -94,7 +92,6 @@ class BaseArtifactService(ABC): Returns: A list of all artifact filenames within a session. """ - pass @abstractmethod async def delete_artifact( @@ -108,7 +105,6 @@ class BaseArtifactService(ABC): session_id: The ID of the session. filename: The name of the artifact file. """ - pass @abstractmethod async def list_versions( @@ -125,4 +121,3 @@ class BaseArtifactService(ABC): Returns: A list of all available versions of the artifact. """ - pass