removes tests for get_object_attr_from_path (uses get_object_by_path_parts internally)

This commit is contained in:
Mose Müller
2024-04-26 09:49:01 +02:00
parent b314ae7dec
commit 348f8aac9b
2 changed files with 1 additions and 17 deletions

View File

@@ -126,7 +126,7 @@ def get_object_by_path_parts(target_obj: Any, path_parts: list[str]) -> Any:
try:
target_obj = getattr(target_obj, part)
except AttributeError:
logger.debug("Attribute % does not exist in the object.", part)
logger.debug("Attribute %a does not exist in the object.", part)
return None
return target_obj