Skip to content

Commit

Permalink
Fix issue with import the signature.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexprey committed Sep 21, 2017
1 parent 0aaed42 commit f0f2fed
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion pysd/py_backend/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,11 @@
import warnings
import random
import xarray as xr
from inspect import signature

try:
from inspect import signature
except ImportError:
from sklearn.externals.funcsigs import signature

try:
import scipy.stats as stats
Expand Down

0 comments on commit f0f2fed

Please sign in to comment.