Ran black and pylint on files.
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 1s

This commit is contained in:
2025-06-17 16:56:04 -04:00
parent f73d091dc2
commit 7d89f6c7ad
4 changed files with 5 additions and 3 deletions

View File

@@ -25,7 +25,7 @@ class MTTServer:
async def start(self):
"""Starts the server."""
self.server = await create_subprocess_exec(*self.cmd)
# delays the return untul the serverr is responding.
# delays the return untul the serverr is responding.
with socket(AF_INET, SOCK_STREAM) as soc:
while soc.connect_ex((ADDR, self.port)) != 0:
continue