Skip to content

Commit dd9c7b1

Browse files
committed
FIX: bug in docs inserted by _preprocess_data
1 parent 89c6a77 commit dd9c7b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1720,7 +1720,7 @@ def inner(ax, *args, **kwargs):
17201720
if len(replace_names) != 0:
17211721
_repl = "* All arguments with the following names: '{names}'."
17221722
if replace_all_args:
1723-
_repl += "\n* All positional arguments."
1723+
_repl += "\n * All positional arguments."
17241724
_repl = _repl.format(names="', '".join(sorted(replace_names)))
17251725
inner.__doc__ = (pre_doc +
17261726
_DATA_DOC_APPENDIX.format(replaced=_repl))

0 commit comments

Comments
 (0)