Skip to content

Commit 595d85d

Browse files
committed
chore: formating
Signed-off-by: Caleb Siebach <caleb@indicio.tech>
1 parent 4a0e599 commit 595d85d

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

socketdock/api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,4 +106,4 @@ async def socket_handler(request: Request, websocket: Websocket):
106106
if socket_id:
107107
del active_connections[socket_id]
108108
LOGGER.info("Removed connection: %s", socket_id)
109-
await backend.socket_disconnected(socket_id)
109+
await backend.socket_disconnected(socket_id)

socketdock/httpbackend.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,4 +102,4 @@ async def socket_disconnected(self, connection_id: str):
102102
if resp.status != 200:
103103
LOGGER.error("Error posting to disconnect uri: %s", response)
104104
else:
105-
LOGGER.debug("Response: %s", response)
105+
LOGGER.debug("Response: %s", response)

socketdock/testbackend.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,4 @@ async def socket_disconnected(self, connection_id: str):
4747
4848
This test backend doesn't care, but can be useful to clean up state.
4949
"""
50-
LOGGER.debug("Disconnected from test backend: %s", connection_id)
50+
LOGGER.debug("Disconnected from test backend: %s", connection_id)

0 commit comments

Comments
 (0)