Skip to content

Commit

Permalink
✏️ review fix
Browse files Browse the repository at this point in the history
  • Loading branch information
MeditationDuck committed Dec 6, 2024
1 parent c5f8b25 commit 8be3148
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions wake/cli/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def shell_complete(
type=str,
help="Path to the shrink log file.",
is_flag=False,
flag_value=0,
flag_value="0",
default=None,
required=False,
)
Expand All @@ -116,7 +116,7 @@ def shell_complete(
type=str,
help="Path of shrank file.",
is_flag=False,
flag_value=0,
flag_value="0",
default=None,
required=False,
)
Expand Down
3 changes: 1 addition & 2 deletions wake/development/json_rpc/communicator.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ class JsonRpcCommunicator:
_protocol: ProtocolAbc
_request_id: int
_connected: bool
_interrupt_received: bool

def __init__(self, config: WakeConfig, uri: str):
if uri.startswith(("http://", "https://")):
Expand All @@ -57,7 +56,7 @@ def __init__(self, config: WakeConfig, uri: str):

self._request_id = 0
self._connected = False
self._interrupt_received = False

def __enter__(self):
self._protocol.__enter__()
self._connected = True
Expand Down

0 comments on commit 8be3148

Please sign in to comment.