Skip to content

Commit 93343c6

Browse files
committed
🎨 Fix docs
1 parent 483f093 commit 93343c6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

‎lamin_utils/_inspect.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
class InspectResult:
1717
"""Result of inspect.
1818
19-
An InspectResult object of calls such as :meth:`~lamindb.core.CanCurate.inspect`.
19+
An InspectResult object of calls such as :meth:`~lamindb.models.CanCurate.inspect`.
2020
"""
2121

2222
def __init__(
@@ -43,12 +43,12 @@ def df(self) -> pd.DataFrame:
4343

4444
@property
4545
def validated(self) -> list[str]:
46-
"""List of successfully :meth:`~lamindb.core.CanCurate.validate` validated items."""
46+
"""List of successfully :meth:`~lamindb.models.CanCurate.validate` validated items."""
4747
return self._validated
4848

4949
@property
5050
def non_validated(self) -> list[str]:
51-
"""List of unsuccessfully :meth:`~lamindb.core.CanCurate.validate` items.
51+
"""List of unsuccessfully :meth:`~lamindb.models.CanCurate.validate` items.
5252
5353
This list can be used to remove any non-validated values such as
5454
genes that do not map against the specified source.

0 commit comments

Comments
 (0)