We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 06835c5 commit 8547d0fCopy full SHA for 8547d0f
src/scportrait/__init__.py
@@ -1,7 +1,13 @@
1
"""Top-level package for scPortrait"""
2
3
+# silence warnings
4
+import warnings
5
+
6
from scportrait import io
7
from scportrait import pipeline as pipeline
8
from scportrait import plotting as pl
9
from scportrait import processing as pp
10
from scportrait import tools as tl
11
12
+# silence warning from spatialdata resulting in an older dask version see #139
13
+warnings.filterwarnings("ignore", message="ignoring keyword argument 'read_only'")
0 commit comments