1
0

change matplotlib backend from qt5agg to QtAgg

according to the matplotlib docs
(https://matplotlib.org/stable/api/backend_qt_api.html) specifing the
exact qt version is depreceated and from now on only QtAgg should be
specified for the qt backend.
This commit is contained in:
f321x
2025-06-10 16:14:04 +02:00
parent 229219da9c
commit dc3406d561

View File

@@ -5,7 +5,7 @@ from decimal import Decimal
from collections import defaultdict
import matplotlib
matplotlib.use('Qt5Agg')
matplotlib.use('QtAgg')
import matplotlib.pyplot as plt
import matplotlib.dates as md