We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86b4b13 commit 109ba4aCopy full SHA for 109ba4a
package/scripts/prmon_plot.py
@@ -13,7 +13,8 @@
13
mpl.use("Agg")
14
import matplotlib.pyplot as plt
15
16
- plt.style.use("seaborn-whitegrid")
+ if "seaborn-v0_8-whitegrid" in plt.style.available:
17
+ plt.style.use("seaborn-v0_8-whitegrid")
18
except ImportError:
19
print("ERROR:: This script needs numpy, pandas and matplotlib.")
20
print("ERROR:: Looks like at least one of these modules is missing.")
0 commit comments