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 617e216 commit 0600234Copy full SHA for 0600234
neo/test/iotest/test_kwikio.py
@@ -14,7 +14,7 @@
14
from neo.test.iotest.common_io_test import BaseTestIO
15
16
17
-@unittest.skipUnless( HAVE_KWIK, "requires klusta")
+@unittest.skipUnless(HAVE_KWIK, "requires klusta")
18
class TestKwikIO(BaseTestIO, unittest.TestCase):
19
ioclass = kwikio.KwikIO
20
entities_to_download = [
neo/test/iotest/test_neomatlabio.py
@@ -15,7 +15,7 @@
try:
import scipy.io
HAVE_SCIPY = True
-except:
+except ImportError:
HAVE_SCIPY = False
21
0 commit comments