From 547f847b26b6b9bba72e1e6d67ddb60c955e619f Mon Sep 17 00:00:00 2001 From: Nils Nemitz Date: Thu, 4 Mar 2021 16:00:52 +0900 Subject: [PATCH] obliviated stray debug statement --- pyqtgraph/graphicsItems/PlotDataItem.py | 1 - 1 file changed, 1 deletion(-) diff --git a/pyqtgraph/graphicsItems/PlotDataItem.py b/pyqtgraph/graphicsItems/PlotDataItem.py index efa87c8e..8bf1534c 100644 --- a/pyqtgraph/graphicsItems/PlotDataItem.py +++ b/pyqtgraph/graphicsItems/PlotDataItem.py @@ -591,7 +591,6 @@ class PlotDataItem(GraphicsObject): curveArgs = {} scatterArgs = {} if update_style: # repeat style arguments only when changed - print(' PDI: style update in updateItems') for k,v in [('pen','pen'), ('shadowPen','shadowPen'), ('fillLevel','fillLevel'), ('fillOutline', 'fillOutline'), ('fillBrush', 'brush'), ('antialias', 'antialias'), ('connect', 'connect'), ('stepMode', 'stepMode')]: if k in self.opts: curveArgs[v] = self.opts[k]