Skip to content

Commit

Permalink
πŸ“ Use CanCurate instead of CanValidate in docs (#93)
Browse files Browse the repository at this point in the history
Use CanCurate instead of CanValidate in docs
  • Loading branch information
Koncopd authored Nov 18, 2024
1 parent 339b822 commit dc0c587
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lamin_utils/_inspect.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
class InspectResult:
"""Result of inspect.
An InspectResult object of calls such as :meth:`~lamindb.core.CanValidate.inspect`.
An InspectResult object of calls such as :meth:`~lamindb.core.CanCurate.inspect`.
"""

def __init__(
Expand All @@ -41,12 +41,12 @@ def df(self) -> pd.DataFrame:

@property
def validated(self) -> list[str]:
"""List of successfully :meth:`~lamindb.core.CanValidate.validate` validated items."""
"""List of successfully :meth:`~lamindb.core.CanCurate.validate` validated items."""
return self._validated

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

0 comments on commit dc0c587

Please sign in to comment.