Skip to content
Snippets Groups Projects
Commit d8b65e96 authored by Frederik Zahle's avatar Frederik Zahle
Browse files

try/except around matplotlib import

parent 4e0e0b22
No related branches found
No related tags found
1 merge request!39try/except around matplotlib import
Pipeline #
...@@ -31,7 +31,10 @@ import scipy as sp ...@@ -31,7 +31,10 @@ import scipy as sp
from scipy import optimize as opt from scipy import optimize as opt
from scipy import stats from scipy import stats
from scipy.interpolate import griddata as interp from scipy.interpolate import griddata as interp
from matplotlib import pyplot as plt try:
from matplotlib import pyplot as plt
except:
pass
import pandas as pd import pandas as pd
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment