Skip to content

Commit b555ff2

Browse files
black formatting
1 parent c08050c commit b555ff2

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

tests/integration/callbacks/test_basic_callback.py

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -658,15 +658,11 @@ def test_cbsc015_input_output_callback(dash_duo):
658658

659659
app = dash.Dash(__name__)
660660
app.layout = html.Div(
661-
[
662-
html.Div(id="input-text"),
663-
dcc.Input(id="input", type="number", value=0),
664-
]
661+
[html.Div(id="input-text"), dcc.Input(id="input", type="number", value=0),]
665662
)
666663

667664
@app.callback(
668-
Output("input", "value"),
669-
Input("input", "value"),
665+
Output("input", "value"), Input("input", "value"),
670666
)
671667
def circular_output(v):
672668
ctx = dash.callback_context
@@ -677,9 +673,9 @@ def circular_output(v):
677673
return value
678674

679675
call_count = Value("i", 0)
676+
680677
@app.callback(
681-
Output("input-text", "children"),
682-
Input("input", "value"),
678+
Output("input-text", "children"), Input("input", "value"),
683679
)
684680
def follower_output(v):
685681
with lock:

0 commit comments

Comments
 (0)