Skip to content

Commit

Permalink
fix: missed params
Browse files Browse the repository at this point in the history
  • Loading branch information
MehmedGIT committed Oct 1, 2024
1 parent 342ef3a commit 0e80a7c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/ocrd_network/cli/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,8 @@ def send_processing_job_request(
# TODO: This is temporally available to toggle
# between the ProcessingWorker/ProcessorServer
agent_type: Optional[str],
block: Optional[bool]
block: Optional[bool],
print_state: Optional[bool]
):
"""
Submit a processing job to the processing server.
Expand Down Expand Up @@ -186,7 +187,8 @@ def send_workflow_job_request(
address: Optional[str],
path_to_mets: str,
path_to_workflow: str,
block: Optional[bool]
block: Optional[bool],
print_state: Optional[bool]
):
"""
Submit a workflow job to the processing server.
Expand Down

0 comments on commit 0e80a7c

Please sign in to comment.