From 76995d87669a27dbc3c77c84d6398821cbf35ae5 Mon Sep 17 00:00:00 2001 From: Antony Lee Date: Tue, 20 Nov 2018 01:30:27 +0100 Subject: [PATCH] Remove unused, private _process_text_args. --- lib/matplotlib/text.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/lib/matplotlib/text.py b/lib/matplotlib/text.py index ba04cfe55252..a068ccffa527 100644 --- a/lib/matplotlib/text.py +++ b/lib/matplotlib/text.py @@ -22,16 +22,6 @@ _log = logging.getLogger(__name__) -def _process_text_args(override, fontdict=None, **kwargs): - """Return an override dict. See `~pyplot.text' docstring for info.""" - - if fontdict is not None: - override.update(fontdict) - - override.update(kwargs) - return override - - @contextlib.contextmanager def _wrap_text(textobj): """Temporarily inserts newlines to the text if the wrap option is enabled.