Skip to content

Commit a72f357

Browse files
authored
Merge pull request #15 from tacaswell/mnt_codescan
Mnt: fix a couple of things from codeql
2 parents a473e8f + 8590c35 commit a72f357

File tree

4 files changed

+39
-42
lines changed

4 files changed

+39
-42
lines changed

docs/source/api.rst

+32-32
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Select the backend
1212
:toctree: _as_gen
1313

1414

15-
mpl_gui.select_gui_toolkit
15+
select_gui_toolkit
1616

1717

1818
Interactivity
@@ -22,9 +22,9 @@ Interactivity
2222
:toctree: _as_gen
2323

2424

25-
mpl_gui.ion
26-
mpl_gui.ioff
27-
mpl_gui.is_interactive
25+
ion
26+
ioff
27+
is_interactive
2828

2929

3030
Unmanaged Figures
@@ -41,9 +41,9 @@ a `matplotlib.figure.Figure` instance and creating children in one line.
4141

4242

4343

44-
mpl_gui.figure
45-
mpl_gui.subplots
46-
mpl_gui.subplot_mosaic
44+
figure
45+
subplots
46+
subplot_mosaic
4747

4848

4949

@@ -55,21 +55,21 @@ Display
5555

5656

5757

58-
mpl_gui.display
59-
mpl_gui.demote_figure
58+
display
59+
demote_figure
6060

6161

6262

6363
Locally Managed Figures
6464
-----------------------
6565

6666

67-
.. autoclass:: mpl_gui.FigureRegistry
67+
.. autoclass:: FigureRegistry
6868
:no-undoc-members:
6969
:show-inheritance:
7070

7171

72-
.. autoclass:: mpl_gui.FigureContext
72+
.. autoclass:: FigureContext
7373
:no-undoc-members:
7474
:show-inheritance:
7575

@@ -80,9 +80,9 @@ Create Figures and Axes
8080
:toctree: _as_gen
8181

8282

83-
mpl_gui.FigureRegistry.figure
84-
mpl_gui.FigureRegistry.subplots
85-
mpl_gui.FigureRegistry.subplot_mosaic
83+
FigureRegistry.figure
84+
FigureRegistry.subplots
85+
FigureRegistry.subplot_mosaic
8686

8787

8888
Access managed figures
@@ -92,9 +92,9 @@ Access managed figures
9292
:toctree: _as_gen
9393

9494

95-
mpl_gui.FigureRegistry.by_label
96-
mpl_gui.FigureRegistry.by_number
97-
mpl_gui.FigureRegistry.figures
95+
FigureRegistry.by_label
96+
FigureRegistry.by_number
97+
FigureRegistry.figures
9898

9999

100100

@@ -106,10 +106,10 @@ Show and close managed Figures
106106
:toctree: _as_gen
107107

108108

109-
mpl_gui.FigureRegistry.show_all
110-
mpl_gui.FigureRegistry.close_all
111-
mpl_gui.FigureRegistry.show
112-
mpl_gui.FigureRegistry.close
109+
FigureRegistry.show_all
110+
FigureRegistry.close_all
111+
FigureRegistry.show
112+
FigureRegistry.close
113113

114114

115115

@@ -130,9 +130,9 @@ Create Figures and Axes
130130
:toctree: _as_gen
131131

132132

133-
mpl_gui.global_figures.figure
134-
mpl_gui.global_figures.subplots
135-
mpl_gui.global_figures.subplot_mosaic
133+
figure
134+
subplots
135+
subplot_mosaic
136136

137137

138138
Access managed figures
@@ -143,7 +143,7 @@ Access managed figures
143143
:toctree: _as_gen
144144

145145

146-
mpl_gui.global_figures.by_label
146+
by_label
147147

148148

149149
Show and close managed Figures
@@ -156,10 +156,10 @@ Show and close managed Figures
156156

157157

158158

159-
mpl_gui.global_figures.show
160-
mpl_gui.global_figures.show_all
161-
mpl_gui.global_figures.close_all
162-
mpl_gui.global_figures.close
159+
show
160+
show_all
161+
close_all
162+
close
163163

164164

165165
Interactivity
@@ -170,6 +170,6 @@ Interactivity
170170

171171

172172

173-
mpl_gui.global_figures.ion
174-
mpl_gui.global_figures.ioff
175-
mpl_gui.global_figures.is_interactive
173+
ion
174+
ioff
175+
is_interactive

docs/source/conf.py

-4
Original file line numberDiff line numberDiff line change
@@ -108,10 +108,6 @@
108108
# If true, `todo` and `todoList` produce output, else they produce nothing.
109109
todo_include_todos = False
110110

111-
112-
# The name of the Pygments (syntax highlighting) style to use.
113-
pygments_style = "sphinx"
114-
115111
default_role = "obj"
116112

117113
nitpicky = True

mpl_gui/__init__.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ def show_all(self, *, block=None, timeout=None):
250250
if timeout is None:
251251
timeout = self._timeout
252252
self._ensure_all_figures_promoted()
253-
display(*self.figures, block=self._block, timeout=self._timeout)
253+
display(*self.figures, block=self._block, timeout=timeout)
254254

255255
# alias to easy pyplot compatibility
256256
show = show_all
@@ -306,7 +306,8 @@ def close(self, val):
306306
307307
"""
308308
if val == "all":
309-
return self.close_all()
309+
self.close_all()
310+
return
310311
# or do we want to close _all_ of the figures with a given label / number?
311312
if isinstance(val, str):
312313
fig = self.by_label[val]
@@ -326,6 +327,7 @@ def close(self, val):
326327
_FigureCanvasBase(figure=fig)
327328
assert fig.canvas.manager is None
328329
self._fig_to_number.pop(fig, None)
330+
return
329331

330332

331333
class FigureContext(FigureRegistry):

mpl_gui/_manage_backend.py

+3-4
Original file line numberDiff line numberDiff line change
@@ -79,10 +79,9 @@ def select_gui_toolkit(newbackend=None):
7979
except ImportError:
8080
continue
8181

82-
else:
83-
# Switching to Agg should always succeed; if it doesn't, let the
84-
# exception propagate out.
85-
return select_gui_toolkit("agg")
82+
# Switching to Agg should always succeed; if it doesn't, let the
83+
# exception propagate out.
84+
return select_gui_toolkit("agg")
8685

8786
if isinstance(newbackend, str):
8887
# Backends are implemented as modules, but "inherit" default method

0 commit comments

Comments
 (0)