Skip to content

Commit 80bf104

Browse files
Merge pull request #3 from microscopic-image-analysis/fix-issue#2
minor fix to import numpy.typing
2 parents 134e7cf + b794f85 commit 80bf104

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

bayes_mef/utils.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@
22
from functools import wraps
33

44
import numpy as np
5+
import numpy.typing as npt
56
from scipy.special import gammaln
67

7-
ComplexArr = np.typing.NDArray[np.complexfloating]
8+
ComplexArr = npt.NDArray[np.complexfloating]
89

910

1011
def corr(a, b):

0 commit comments

Comments
 (0)