Skip to content

Commit

Permalink
#1863 try and work out why idklusolver not working in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
martinjrobins committed Apr 1, 2022
1 parent 77f2f26 commit fc4a458
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pybamm/solvers/idaklu_solver.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
try:
idaklu = importlib.util.module_from_spec(idaklu_spec)
idaklu_spec.loader.exec_module(idaklu)
except ImportError: # pragma: no cover
except ImportError as e: # pragma: no cover
print('IDAKLUSolver import error:', e)
idaklu_spec = None


Expand Down

0 comments on commit fc4a458

Please sign in to comment.