Skip to content
Snippets Groups Projects

try/except around matplotlib import

Merged Frederik Zahle requested to merge remove_matplotlib into master
1 file
+ 4
1
Compare changes
  • Side-by-side
  • Inline
+ 4
1
@@ -31,7 +31,10 @@ import scipy as sp
from scipy import optimize as opt
from scipy import stats
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
Loading