Skip to content

Commit 6ce05d0

Browse files
committed
Black
1 parent 3d6ef1e commit 6ce05d0

1 file changed

Lines changed: 28 additions & 9 deletions

File tree

ultraplot/figure.py

Lines changed: 28 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -670,18 +670,37 @@ def __init__(
670670
refnum, refaspect, refwidth, refheight, figwidth, figheight, journal
671671
)
672672
self._init_gridspec_params(
673-
left=left, right=right, top=top, bottom=bottom,
674-
wspace=wspace, hspace=hspace, space=space,
675-
wequal=wequal, hequal=hequal, equal=equal,
676-
wgroup=wgroup, hgroup=hgroup, group=group,
677-
wpad=wpad, hpad=hpad, pad=pad,
678-
outerpad=outerpad, innerpad=innerpad, panelpad=panelpad,
673+
left=left,
674+
right=right,
675+
top=top,
676+
bottom=bottom,
677+
wspace=wspace,
678+
hspace=hspace,
679+
space=space,
680+
wequal=wequal,
681+
hequal=hequal,
682+
equal=equal,
683+
wgroup=wgroup,
684+
hgroup=hgroup,
685+
group=group,
686+
wpad=wpad,
687+
hpad=hpad,
688+
pad=pad,
689+
outerpad=outerpad,
690+
innerpad=innerpad,
691+
panelpad=panelpad,
679692
)
680693
self._init_tight_layout(tight, kwargs)
681694
self._init_sharing(
682-
sharex=sharex, sharey=sharey, share=share,
683-
spanx=spanx, spany=spany, span=span,
684-
alignx=alignx, aligny=aligny, align=align,
695+
sharex=sharex,
696+
sharey=sharey,
697+
share=share,
698+
spanx=spanx,
699+
spany=spany,
700+
span=span,
701+
alignx=alignx,
702+
aligny=aligny,
703+
align=align,
685704
)
686705
self._init_figure_state(figwidth, figheight, kwargs)
687706

0 commit comments

Comments
 (0)