Skip to content

Commit

Permalink
style: apply automated linter fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
megalinter-bot committed Nov 27, 2023
1 parent 586ffe8 commit 3649dda
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions src/safeds_runner/server/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,11 @@ def ws_main(ws: simple_websocket.Server) -> None:


def send_websocket_value(
connection: simple_websocket.Server, exec_id: str, name: str, var_type: str, value: typing.Any,
connection: simple_websocket.Server,
exec_id: str,
name: str,
var_type: str,
value: typing.Any,
) -> None:
"""
Send a computed placeholder value to the vscode-extension.
Expand All @@ -148,7 +152,10 @@ def send_websocket_value(


def send_websocket_message(
connection: simple_websocket.Server, msg_type: str, exec_id: str, msg_data: typing.Any,
connection: simple_websocket.Server,
msg_type: str,
exec_id: str,
msg_data: typing.Any,
) -> None:
"""
Send any message to the vscode-extension.
Expand Down

0 comments on commit 3649dda

Please sign in to comment.