Skip to content

Commit

Permalink
[BUGFIX] _do_close forgot to close
Browse files Browse the repository at this point in the history
  • Loading branch information
subnut committed Mar 14, 2023
1 parent 4a36d12 commit 8c7227e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion binary.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
from simple_websocket_server import WebSocket
from simple_websocket_server import WebSocketServer

BUILD_VERSION: str = "v0.3.1"
BUILD_VERSION: str = "v0.3.2"

WINDOWS: bool = os.name == "nt"
LOCALHOST: str = "127.0.0.1" if WINDOWS else "localhost"
Expand Down Expand Up @@ -424,6 +424,7 @@ def _do_close(self):
":".join([str(_) for _ in self.address]),
"closed by us",
)
self.close()

def __init__(self, *args, **kwargs):
self.nvim_addr_vs_websocket: Dict[str, List[GhostWebSocket]] = {}
Expand Down
2 changes: 1 addition & 1 deletion binary_version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.3.1
v0.3.2

0 comments on commit 8c7227e

Please sign in to comment.