We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74476e3 commit c7f3543Copy full SHA for c7f3543
spaceborne/cov_cosebis.py
@@ -5,7 +5,14 @@
5
import itertools
6
import warnings
7
8
-import cloelib.auxiliary.cosebi_helpers as ch
+try:
9
+ import cloelib.auxiliary.cosebi_helpers as ch
10
+except ImportError as e:
11
+ raise ImportError(
12
+ 'cloelib is required to compute COSEBIs covariance. '
13
+ 'Please install it and rerun the code.'
14
+ ) from e
15
+
16
import numpy as np
17
from scipy.integrate import simpson as simps
18
0 commit comments