Skip to content

Commit

Permalink
💚 Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
falexwolf committed Jan 4, 2025
1 parent 5463676 commit acbaf72
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 16 deletions.
17 changes: 2 additions & 15 deletions docs/arrays.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -58,26 +58,13 @@
"!lamin init --storage s3://lamindb-ci/test-array-notebook --name test-array-notebook"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"tags": [
"hide-output"
]
},
"outputs": [],
"source": [
"import lamindb as ln"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"ln.settings.verbosity = \"info\""
"import lamindb as ln"
]
},
{
Expand Down Expand Up @@ -267,7 +254,7 @@
},
"outputs": [],
"source": [
"adata_subset.to_memory()"
"# adata_subset.to_memory()"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion tests/core/test_feature_set.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def test_feature_set_from_values():
feature_set = ln.FeatureSet.from_values(
["weird_name"], field=ln.Feature.name, type="float"
)
with pytest.raises(TypeError):
with pytest.raises(ValidationError):
ln.FeatureSet.from_values([1], field=ln.Feature.name, type="float")

# return none if no validated features
Expand Down

0 comments on commit acbaf72

Please sign in to comment.