Skip to content

Commit

Permalink
bugfix, release 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
emilhe committed May 22, 2023
1 parent 28863fd commit 2bf9f45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_enrich.py
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,7 @@ def update_all(n_clicks):
"""
Populate serverside output ALL at once, i.e. WRITE to SSO using ALL.
"""
return [Serverside(pd.DataFrame(columns=["B"], data=[n_clicks]))] * 2
return tuple([Serverside(pd.DataFrame(columns=["B"], data=[n_clicks]))] * 2)

@app.callback(Output(_id("log", MATCH), "children"),
Input(_id("sso", MATCH), "children"))
Expand Down

0 comments on commit 2bf9f45

Please sign in to comment.