chore: improve log message

This commit is contained in:
Matthias
2025-10-28 20:47:22 +01:00
parent 635af046bf
commit db63d433f7

View File

@@ -149,7 +149,7 @@ class IResolver:
continue
module_path = entry.resolve()
if entry.read_text().find(f"class {object_name}(") == -1:
logger.debug(f"Skipping {module_path} as it does not contain class {object_name}")
logger.debug(f"Skipping {module_path} as it does not contain class {object_name}.")
continue
if obj := next(cls._get_valid_object(module_path, object_name), None):