fix: adjust for linter

This commit is contained in:
drbh
2025-08-07 19:43:36 +00:00
parent 003d21588b
commit eeb35a868a

View File

@ -259,7 +259,7 @@ def get_local_kernel(repo_path: Path, package_name: str) -> ModuleType:
if package_path.exists():
return import_from_path(package_name, package_path)
# If we didn't find the package in the repo we may have a explicit
# If we didn't find the package in the repo we may have a explicit
# package path.
package_path = repo_path / package_name / "__init__.py"
if package_path.exists():