Skip to content

Commit

Permalink
[skip ci] try not importing rl_cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
tlambert03 committed Mar 5, 2019
1 parent 3086a1c commit ff4a80b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pycudadecon/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from .version import __version__
from .deconvolution import decon, TemporaryOTF
from .libcudawrapper import RLContext, rl_decon, rl_init, rl_cleanup
from .libcudawrapper import RLContext, rl_decon, rl_init
from .affine import affineGPU, deskewGPU, rotateGPU

__all__ = (decon, TemporaryOTF, RLContext, rl_decon, rl_init, rl_cleanup,
__all__ = (decon, TemporaryOTF, RLContext, rl_decon, rl_init,
affineGPU, deskewGPU, rotateGPU)
3 changes: 2 additions & 1 deletion test/test_decon.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import unittest
import os
import numpy as np
from pycudadecon import decon, RLContext, rl_init, rl_decon, rl_cleanup
from pycudadecon import decon, RLContext, rl_init, rl_decon
from pycudadecon.libcudawrapper import rl_cleanup
from pycudadecon.util import imread


Expand Down

0 comments on commit ff4a80b

Please sign in to comment.