Skip to content

Commit

Permalink
Patch CLI input wiring
Browse files Browse the repository at this point in the history
  • Loading branch information
Krisjanis Veinbahs committed Mar 10, 2022
1 parent 061d523 commit ac36c6b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/src/service/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -548,8 +548,8 @@ async def agent_nrf52(

@staticmethod
async def agent_anvyl(
hardware_id_str: str,
config_path_str: Optional[str],
hardware_id_str: str,
control_server_str: Optional[str],
static_server_str: Optional[str],
username_str: Optional[str],
Expand Down Expand Up @@ -748,7 +748,7 @@ def hardware_serial_monitor(
monitor_script_path_str: Optional[str]
) -> Result[MonitorSerial, DIPClientError]:
# Build backend
backend_result = CLI.parsed_backend(control_server_str, None, None, None, None)
backend_result = CLI.parsed_backend(config_path_str, control_server_str, None, None, None)
if isinstance(backend_result, Err): return Err(backend_result.value)

# Hardware id
Expand Down

0 comments on commit ac36c6b

Please sign in to comment.