Skip to content

Commit 1f81cb0

Browse files
committed
fixes
1 parent e6a3151 commit 1f81cb0

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/jsi/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
def send_command(command: str):
1010
with socket.socket(socket.AF_UNIX, socket.SOCK_STREAM) as client:
1111
try:
12-
client.connect(SOCKET_PATH)
12+
client.connect(SOCKET_PATH.as_posix())
1313
client.sendall(command.encode())
1414
response = client.recv(4096).decode()
1515
print(response)

src/jsi/utils.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
from enum import Enum
99
from pathlib import Path
1010

11+
1112
class Closeable:
1213
def close(self) -> None: ...
1314

0 commit comments

Comments
 (0)