From 884a08c63f3602101db97625d7fa99a22f8357a1 Mon Sep 17 00:00:00 2001 From: Andrew Somerville Date: Thu, 28 May 2020 20:02:04 -0400 Subject: [PATCH] fix: fix deprecation warning re matplotlib use(warn=...) deprecation --- stl_tools/text2png.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stl_tools/text2png.py b/stl_tools/text2png.py index bddb9ee..d41a719 100755 --- a/stl_tools/text2png.py +++ b/stl_tools/text2png.py @@ -1,6 +1,6 @@ import os import matplotlib as mpl -mpl.use('Agg', warn=False) +mpl.use('Agg') import matplotlib.pyplot as plt