From 8d2d2f538034e4621b0720eb79ec2369d1dfee10 Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Wed, 27 May 2026 07:09:22 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=B9=20[code=20health=20improvement]=20?= =?UTF-8?q?Remove=20unused=20get=5Fresource=5Fname=20method?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: SatoryKono <13055362+SatoryKono@users.noreply.github.com> --- .../adapters/chembl/entity_mapper.py | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/src/bioetl/infrastructure/adapters/chembl/entity_mapper.py b/src/bioetl/infrastructure/adapters/chembl/entity_mapper.py index 9a1e25f23d..1821965ee4 100644 --- a/src/bioetl/infrastructure/adapters/chembl/entity_mapper.py +++ b/src/bioetl/infrastructure/adapters/chembl/entity_mapper.py @@ -181,22 +181,6 @@ def has_composite_key(entity_type: str) -> bool: """ return has_entity_composite_key(entity_type) - @staticmethod - def get_resource_name(entity_type: str) -> str | None: - """Get the ChEMBL resource name for entity type. - - Args: - entity_type: Entity type (e.g., 'activity', 'publication'). - - Returns: - Resource name or None if unknown. - - Example: - >>> ChemblEntityMapper.get_resource_name("publication") - 'document' - """ - return resolve_resource_name(entity_type) - @staticmethod def is_known_entity(entity_type: str) -> bool: """Check if entity type is known (publication or non-publication).