File tree 1 file changed +8
-6
lines changed
1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -334,9 +334,10 @@ def resolve_backend(self, backend):
334
334
335
335
Returns
336
336
-------
337
- Tuple of backend (str) and GUI framework (str or None).
338
- A non-interactive backend returns None for its GUI framework rather than
339
- "headless".
337
+ backend : str
338
+ The backend name.
339
+ framework : str or None
340
+ The GUI framework, which will be None for a backend that is non-interactive.
340
341
"""
341
342
if isinstance (backend , str ):
342
343
backend = backend .lower ()
@@ -387,9 +388,10 @@ def resolve_gui_or_backend(self, gui_or_backend):
387
388
388
389
Returns
389
390
-------
390
- tuple of (str, str or None)
391
- A non-interactive backend returns None for its GUI framework rather than
392
- "headless".
391
+ backend : str
392
+ The backend name.
393
+ framework : str or None
394
+ The GUI framework, which will be None for a backend that is non-interactive.
393
395
"""
394
396
gui_or_backend = gui_or_backend .lower ()
395
397
You can’t perform that action at this time.
0 commit comments