Allow set_grid with a single string if there is a single row description
This commit is contained in:
parent
e417a41c6b
commit
30edf021b6
792
Examples.ipynb
792
Examples.ipynb
File diff suppressed because one or more lines are too long
@ -128,7 +128,8 @@ class Figure():
|
|||||||
``replot.Figure.plot``).
|
``replot.Figure.plot``).
|
||||||
|
|
||||||
:param grid_description: A list of rows. Each row is a string \
|
:param grid_description: A list of rows. Each row is a string \
|
||||||
containing the groups to display (can be seen as ASCII art).
|
containing the groups to display (can be seen as ASCII art). \
|
||||||
|
Can be a single string in case of a single row.
|
||||||
:param auto: Whether the grid should be guessed automatically from \
|
:param auto: Whether the grid should be guessed automatically from \
|
||||||
groups or not (optional). Can be a boolean or a dict having \
|
groups or not (optional). Can be a boolean or a dict having \
|
||||||
the possible ``height`` (int), ``width`` (int) and \
|
the possible ``height`` (int), ``width`` (int) and \
|
||||||
@ -161,6 +162,9 @@ class Figure():
|
|||||||
# Disable the grid and return
|
# Disable the grid and return
|
||||||
self.grid = False
|
self.grid = False
|
||||||
return
|
return
|
||||||
|
elif isinstance(grid_description, str):
|
||||||
|
# If a single string is provided, enclose it in a list.
|
||||||
|
grid_description = [grid_description]
|
||||||
|
|
||||||
# Check that grid is not empty
|
# Check that grid is not empty
|
||||||
if len(grid_description) == 0:
|
if len(grid_description) == 0:
|
||||||
|
Loading…
Reference in New Issue
Block a user