From e8c944440001850fe737b4afaa077c28d052a711 Mon Sep 17 00:00:00 2001 From: cgohlke Date: Mon, 16 Oct 2017 10:49:39 -0700 Subject: [PATCH] Fix Undefined variable 'symbol' --- lib/matplotlib/ticker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/matplotlib/ticker.py b/lib/matplotlib/ticker.py index 84933aeb0e35..07a693ceb966 100644 --- a/lib/matplotlib/ticker.py +++ b/lib/matplotlib/ticker.py @@ -1410,7 +1410,7 @@ def symbol(self): return symbol @symbol.setter - def symbol(self): + def symbol(self, symbol): self._symbol = symbol