File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 16
16
class InspectResult :
17
17
"""Result of inspect.
18
18
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`.
20
20
"""
21
21
22
22
def __init__ (
@@ -43,12 +43,12 @@ def df(self) -> pd.DataFrame:
43
43
44
44
@property
45
45
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."""
47
47
return self ._validated
48
48
49
49
@property
50
50
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.
52
52
53
53
This list can be used to remove any non-validated values such as
54
54
genes that do not map against the specified source.
You can’t perform that action at this time.
0 commit comments