Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 3e6f028

Browse files
committed
Fix indentation of Arrow/Box/Connection styles tables.
They were underindented relative to the rest of the parameter docstrings.
1 parent 3c7a6f6 commit 3e6f028

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/patches.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2195,7 +2195,7 @@ def pprint_styles(cls):
21952195
table_formatstr,
21962196
'',
21972197
])
2198-
return textwrap.indent(rst_table, prefix=' ' * 2)
2198+
return textwrap.indent(rst_table, prefix=' ' * 4)
21992199

22002200
@classmethod
22012201
def register(cls, name, style):

0 commit comments

Comments
 (0)