Skip to content

Commit aaf9af0

Browse files
black formatting
1 parent b3d47ec commit aaf9af0

File tree

1 file changed

+5
-11
lines changed

1 file changed

+5
-11
lines changed

tests/integration/devtools/test_callback_validation.py

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -799,17 +799,11 @@ def test_dvcv016_circular_with_input_output(dash_duo):
799799
)
800800

801801
@app.callback(
802-
[
803-
Output("a", "children"),
804-
Output("b", "children"),
805-
],
806-
[
807-
Input("a", "children"),
808-
Input("b", "children"),
809-
Input("c", "children"),
810-
])
811-
def c1(a,b,c):
812-
return a,b
802+
[Output("a", "children"), Output("b", "children")],
803+
[Input("a", "children"), Input("b", "children"), Input("c", "children")],
804+
)
805+
def c1(a, b, c):
806+
return a, b
813807

814808
@app.callback(Output("c", "children"), [Input("a", "children")])
815809
def c2(children):

0 commit comments

Comments
 (0)