From ed6a973c1e83cf542b839c754da08c6c1189520a Mon Sep 17 00:00:00 2001 From: Antony Lee Date: Sun, 29 Aug 2021 10:47:41 +0200 Subject: [PATCH] Fix documented allowed values for Patch.set_edgecolor. "auto" was documented as allowed value by 05e4ed9, but AFAICT this was not actually implemented (there's no handling for such a value anywhere in the module). --- lib/matplotlib/patches.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/matplotlib/patches.py b/lib/matplotlib/patches.py index 5e053cb364a3..fa54b6f613fd 100644 --- a/lib/matplotlib/patches.py +++ b/lib/matplotlib/patches.py @@ -349,7 +349,7 @@ def set_edgecolor(self, color): Parameters ---------- - color : color or None or 'auto' + color : color or None """ self._original_edgecolor = color self._set_edgecolor(color)