Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 007a8c8 commit 659261eCopy full SHA for 659261e
1 file changed
lib/matplotlib/artist.py
@@ -1094,7 +1094,7 @@ def get_valid_values(self, attr):
1094
1095
match = self._get_valid_values_regex.search(docstring)
1096
if match is not None:
1097
- return match.group(1).replace('\n', ' ')
+ return re.sub("\n *", " ", match.group(1))
1098
return 'unknown'
1099
1100
def _get_setters_and_targets(self):
0 commit comments