Skip to content

Commit b9c98e5

Browse files
committed
fix: linting
1 parent 2d9ba7e commit b9c98e5

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tests/arduino/app_bricks/web_ui/test_web_ui_integration.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,15 @@ def webui_server():
1818
f.write("<html><body>Hello</body></html>")
1919

2020
ui = WebUI(port=0, assets_dir_path=tmp_assets)
21+
2122
def get_hello():
2223
return {"msg": "hello"}
24+
2325
ui.expose_api("GET", "/api/hello", get_hello)
26+
2427
def post_echo(data: dict):
2528
return {"echo": data.get("value")}
29+
2630
ui.expose_api("POST", "/api/echo", post_echo)
2731
ui.start()
2832

0 commit comments

Comments
 (0)