Skip to content

Commit c97f1c8

Browse files
committed
remove fstring for py2 compatibility
1 parent 2412b38 commit c97f1c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/integration/clientside/test_clientside.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@ def test_clsd009_clientside_callback_context(dash_duo):
385385
Output("output-serverside", "children"), [Input({"btn": ALL}, "n_clicks")]
386386
)
387387
def update_output(n_clicks):
388-
return f"triggered: {dash.callback_context.triggered}"
388+
return "triggered: %s" % dash.callback_context.triggered
389389

390390
app.clientside_callback(
391391
"""

0 commit comments

Comments
 (0)