(_)
| 28 | interval=500, |
| 29 | ) |
| 30 | def on_click(_): |
| 31 | set_props("secondary", {"children": "first"}) |
| 32 | set_props("secondary", {"style": {"background": "red"}}) |
| 33 | time.sleep(2) |
| 34 | set_props("secondary", {"children": "second"}) |
| 35 | return "completed" |
| 36 | |
| 37 | |
| 38 | @callback( |
nothing calls this directly
no test coverage detected
searching dependent graphs…