Skip to content

Commit

Permalink
πŸ’š Import
Browse files Browse the repository at this point in the history
  • Loading branch information
sunnyosun committed Dec 19, 2024
1 parent 2f7b36a commit 716a7f3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
5 changes: 3 additions & 2 deletions docs/guide/pert-curator.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
"import lamindb as ln\n",
"import bionty as bt\n",
"import wetlab as wl\n",
"from wetlab.pert import PertCurator\n",
"import ourprojects as ops\n",
"import pandas as pd\n",
"import scanpy as sc\n",
Expand Down Expand Up @@ -96,7 +97,7 @@
"metadata": {},
"outputs": [],
"source": [
"curator = wl.PertCurator(adata)"
"curator = PertCurator(adata)"
]
},
{
Expand Down Expand Up @@ -200,7 +201,7 @@
"outputs": [],
"source": [
"# Recreate Curator object because we are using a new adata\n",
"curator = wl.PertCurator(adata)\n",
"curator = PertCurator(adata)\n",
"curator.validate()"
]
},
Expand Down
1 change: 0 additions & 1 deletion wetlab/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ def __getattr__(name):
import lamindb

del __getattr__ # delete so that imports work out
from ._pert_curator import PertCurator
from .models import (
Biologic,
Biosample,
Expand Down
File renamed without changes.

0 comments on commit 716a7f3

Please sign in to comment.