Skip to content

Commit c025f1b

Browse files
committed
fix lint
1 parent d9630a9 commit c025f1b

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
@@ -1355,7 +1355,9 @@ def dispatch(self):
13551355
outputs_grouping = map_grouping(
13561356
lambda ind: flat_outputs[ind], outputs_indices
13571357
)
1358-
g.outputs_grouping = outputs_grouping # pylint: disable=assigning-non-slot
1358+
g.outputs_grouping = (
1359+
outputs_grouping # pylint: disable=assigning-non-slot
1360+
)
13591361
g.using_outputs_grouping = ( # pylint: disable=assigning-non-slot
13601362
not isinstance(outputs_indices, int)
13611363
and outputs_indices != list(range(grouping_len(outputs_indices)))
@@ -2276,7 +2278,9 @@ def update(pathname_, search_, **states):
22762278
]
22772279
+ [
22782280
# pylint: disable=not-callable
2279-
self.layout() if callable(self.layout) else self.layout
2281+
self.layout()
2282+
if callable(self.layout)
2283+
else self.layout
22802284
]
22812285
)
22822286
if _ID_CONTENT not in self.validation_layout:

0 commit comments

Comments
 (0)