We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a18e6bd commit a0e0c59Copy full SHA for a0e0c59
src/pycudadecon/__init__.py
@@ -40,16 +40,16 @@ def __getattr__(self, name: str) -> Any:
40
from .otf import TemporaryOTF, make_otf
41
42
__all__ = [
43
+ "RLContext",
44
+ "TemporaryOTF",
45
"__version__",
46
"affineGPU",
47
"decon",
48
"deskewGPU",
49
"make_otf",
50
"rl_cleanup",
51
+ "rl_context",
52
"rl_decon",
53
"rl_init",
- "RLContext",
- "rl_context",
54
"rotateGPU",
- "TemporaryOTF",
55
]
src/pycudadecon/util.py
@@ -77,7 +77,7 @@ def is_otf(arr_or_fpath: PathOrArray) -> bool:
77
@contextmanager
78
def stdout_redirected(to: str = os.devnull) -> Iterator[None]:
79
"""
80
- import os.
+ Import os.
81
82
with stdout_redirected(to=filename):
83
print("from Python")
0 commit comments