We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f93bfa commit 6428e6bCopy full SHA for 6428e6b
1 file changed
ultraplot/legend.py
@@ -1940,12 +1940,18 @@ def _build_legends(
1940
"fontsize": inputs.fontsize,
1941
"handler_map": inputs.handler_map,
1942
"title_fontsize": inputs.titlefontsize,
1943
- }
+ }
1944
)
1945
if multi:
1946
objs = lax._parse_legend_centered(pairs, kw_frame=kw_frame, **kwargs)
1947
else:
1948
- kwargs.update({key: kw_frame[key] for key in ("shadow", "fancybox")if key in kw_frame})
+ kwargs.update(
1949
+ {
1950
+ key: kw_frame[key]
1951
+ for key in ("shadow", "fancybox")
1952
+ if key in kw_frame
1953
1954
+ )
1955
objs = [
1956
lax._parse_legend_aligned(
1957
pairs, ncol=inputs.ncol, order=inputs.order, **kwargs
0 commit comments