Skip to content

Commit

Permalink
Merge pull request #18 from MohammadrezaAmani/inui-0.9.7.2-watchdog
Browse files Browse the repository at this point in the history
fix(hot-reload): fix watch dog error.
  • Loading branch information
MohammadrezaAmani authored Nov 14, 2024
2 parents 67149f8 + 6275068 commit d36c1b4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion inui/hotreload.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ def run_async():

async def start_websocket_server():
start_server = await websockets.serve(
websocket_handler, args.host, args.port + 1
lambda x: websocket_handler(x, file_to_watch), args.host, args.port + 1
)
await start_server.wait_closed()

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "inui"
version = "0.9.7.1"
version = "0.9.7.2"
description = "Powerful and Highly Customizable Python Library for UI"
readme = "README.md"
authors = [{ name = "Mohammadreza Amani", email = "[email protected]" }]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
long_description = "\n" + fh.read()


VERSION = "0.9.7.1"
VERSION = "0.9.7.2"

PACKAGE_NAME = "inui"
DESCRIPTION = ""
Expand Down

0 comments on commit d36c1b4

Please sign in to comment.