Skip to content

Commit b6fd63c

Browse files
committed
Fix black lint(via npm run format)
1 parent eef8d24 commit b6fd63c

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

dash/dash.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1389,7 +1389,9 @@ def dispatch(self):
13891389
outputs_grouping = map_grouping(
13901390
lambda ind: flat_outputs[ind], outputs_indices
13911391
)
1392-
g.outputs_grouping = outputs_grouping # pylint: disable=assigning-non-slot
1392+
g.outputs_grouping = (
1393+
outputs_grouping # pylint: disable=assigning-non-slot
1394+
)
13931395
g.using_outputs_grouping = ( # pylint: disable=assigning-non-slot
13941396
not isinstance(outputs_indices, int)
13951397
and outputs_indices != list(range(grouping_len(outputs_indices)))
@@ -2368,7 +2370,9 @@ def update(pathname_, search_, **states):
23682370
if not isinstance(layout, list):
23692371
layout = [
23702372
# pylint: disable=not-callable
2371-
self.layout() if callable(self.layout) else self.layout
2373+
self.layout()
2374+
if callable(self.layout)
2375+
else self.layout
23722376
]
23732377

23742378
self.validation_layout = html.Div(

0 commit comments

Comments
 (0)