Skip to content

Commit

Permalink
quick fix to version 1.1.4b
Browse files Browse the repository at this point in the history
  • Loading branch information
arc-hugo committed Dec 18, 2024
1 parent ac24b6f commit a71d2c2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/seahorse/__about__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-present U.N. Owen <[email protected]>
#
# SPDX-License-Identifier: MIT
__version__ = "1.1.4"
__version__ = "1.1.4b"
5 changes: 3 additions & 2 deletions src/seahorse/game/io_stream.py
Original file line number Diff line number Diff line change
Expand Up @@ -349,8 +349,9 @@ async def stop(task):
await task
except asyncio.CancelledError:
pass

await asyncio.wait_for(site.stop())

Check failure on line 352 in src/seahorse/game/io_stream.py

View workflow job for this annotation

GitHub Actions / Linting (3.12)

Ruff (W293)

src/seahorse/game/io_stream.py:352:1: W293 Blank line contains whitespace
# Stop TCPSite to close socket and runner
await site.stop()

# Blocking call to the procedure
self.event_loop.run_until_complete(stop(task))

0 comments on commit a71d2c2

Please sign in to comment.