We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6a3151 commit 1f81cb0Copy full SHA for 1f81cb0
src/jsi/client.py
@@ -9,7 +9,7 @@
9
def send_command(command: str):
10
with socket.socket(socket.AF_UNIX, socket.SOCK_STREAM) as client:
11
try:
12
- client.connect(SOCKET_PATH)
+ client.connect(SOCKET_PATH.as_posix())
13
client.sendall(command.encode())
14
response = client.recv(4096).decode()
15
print(response)
src/jsi/utils.py
@@ -8,6 +8,7 @@
8
from enum import Enum
from pathlib import Path
+
class Closeable:
def close(self) -> None: ...
0 commit comments