8000 Make mpl_examples+sections a list not a tuple. · matplotlib/matplotlib@14b1cdb · GitHub
[go: up one dir, main page]

Skip to content

Commit 14b1cdb

Browse files
committed
Make mpl_examples+sections a list not a tuple.
Other parts of the code overwrites this with a list, fixes one sphinx warning with sphinx 1.4.0
1 parent 3cd9c2d commit 14b1cdb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@
118118
plot_formats = [('svg', 72), ('png', 80)]
119119

120120
# Subdirectories in 'examples/' directory of package and titles for gallery
121-
mpl_example_sections = (
121+
mpl_example_sections = [
122122
('lines_bars_and_markers', 'Lines, bars, and markers'),
123123
('shapes_and_collections', 'Shapes and collections'),
124124
('statistics', 'Statistical plots'),
@@ -139,7 +139,7 @@
139139
('axisartist', 'axisartist toolkit'),
140140
('units', 'units'),
141141
('widgets', 'widgets'),
142-
)
142+
]
143143

144144

145145
# Github extension

0 commit comments

Comments
 (0)
0