Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
karmacoma-eth committed Oct 22, 2024
1 parent e6a3151 commit 1f81cb0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/jsi/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
def send_command(command: str):
with socket.socket(socket.AF_UNIX, socket.SOCK_STREAM) as client:
try:
client.connect(SOCKET_PATH)
client.connect(SOCKET_PATH.as_posix())
client.sendall(command.encode())
response = client.recv(4096).decode()
print(response)
Expand Down
1 change: 1 addition & 0 deletions src/jsi/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
from enum import Enum
from pathlib import Path


class Closeable:
def close(self) -> None: ...

Expand Down

0 comments on commit 1f81cb0

Please sign in to comment.