Skip to content

Commit

Permalink
Merge pull request #507 from jseabold/fix-45
Browse files Browse the repository at this point in the history
ENH: Protect numdifftools import. Closes #45
  • Loading branch information
jseabold committed Oct 5, 2012
2 parents d587df8 + 57e0d65 commit e31e25f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion statsmodels/tsa/mlemodel.py
Expand Up @@ -13,7 +13,10 @@

import numpy as np

import numdifftools as ndt
try:
import numdifftools as ndt
except:
pass

from statsmodels.base.model import LikelihoodModel

Expand Down

0 comments on commit e31e25f

Please sign in to comment.