Skip to content

Commit

Permalink
version 1.1.4
Browse files Browse the repository at this point in the history
[FIX] version dump 1.1.4
  • Loading branch information
arc-hugo authored Dec 18, 2024
2 parents 32917bb + 18cb5ef commit 6d79373
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions src/seahorse/game/io_stream.py
Original file line number Diff line number Diff line change
Expand Up @@ -350,5 +350,7 @@ async def stop(task):
except asyncio.CancelledError:
pass

await asyncio.wait_for(site.stop())

# Blocking call to the procedure
self.event_loop.run_until_complete(stop(task))
5 changes: 3 additions & 2 deletions src/seahorse/game/master.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,9 @@ def __init__(

from functools import partialmethod

logger.level("VERDICT", no=33, icon="x", color="<blue>")
logger.__class__.verdict = partialmethod(logger.__class__.log, "VERDICT")
if "VERDICT" not in logger._core.levels:
logger.level("VERDICT", no=33, icon="x", color="<blue>")
logger.__class__.verdict = partialmethod(logger.__class__.log, "VERDICT")

logger.add(sys.stderr, level=log_level)

Expand Down

0 comments on commit 6d79373

Please sign in to comment.