Skip to content

Commit

Permalink
Make compatable with latest matplotlib version
Browse files Browse the repository at this point in the history
somewhere between matplotlib 3.0.3 and 3.3.3 the matplotlib.use() method removed the 'warn' keyword. This has been removed from the method call.
  • Loading branch information
lucydot authored Dec 15, 2020
1 parent 40f2c56 commit 5eeb368
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion effmass/outputs.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"""
import matplotlib
matplotlib.use('Agg',warn=False)
matplotlib.use('Agg')

import matplotlib.pyplot as plt
import numpy as np
Expand Down

0 comments on commit 5eeb368

Please sign in to comment.