We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 524f534 commit ae5672bCopy full SHA for ae5672b
packages/griffelib/src/griffe/_internal/finder.py
@@ -508,7 +508,7 @@ def _handle_editable_module(path: Path) -> list[_SP]:
508
and node.value.func.id == "install"
509
and isinstance(node.value.args[1], ast.Constant)
510
):
511
- build_path = Path(node.value.args[1].value, "packages/griffelib/src") # type: ignore[arg-type]
+ build_path = Path(node.value.args[1].value, "src") # type: ignore[arg-type]
512
# NOTE: What if there are multiple packages?
513
pkg_name = next(build_path.iterdir()).name
514
return [_SP(build_path, always_scan_for=pkg_name)]
0 commit comments