refactor(backend_server.py): rename _send_ack() -> send_ack()

This commit is contained in:
2026-02-28 19:07:11 +01:00
parent 97221bc1b7
commit 1e02da1851

View File

@@ -62,7 +62,7 @@ class BackendServer:
) )
time.sleep(1) time.sleep(1)
def _send_ack(self, client: Client, target_id: str) -> None: def send_ack(self, client: Client, target_id: str) -> None:
"""Send an ACK message to a client. """Send an ACK message to a client.
Args: Args: