Skip to content

Commit 7bee2e7

Browse files
committed
updated as per the review comments
1 parent 362a595 commit 7bee2e7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/utility-guides/BatchProcessing.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ The Batch Processing utility provides a one-stop function for processing batches
2525
```python
2626
from batch_processing_utility import batch_processing
2727

28-
await batch_processing(
28+
batch_processing(
2929
page=page,
3030
batch_type="S1",
3131
batch_description="Pre-invitation (FIT)",
32-
latest_event_status=["Status1", "Status2"], # Can be str, list[str], or None
32+
latest_event_status=["Status1", "Status2"], # Can be str or list[str]
3333
run_timed_events=True,
3434
get_subjects_from_pdf=False
3535
)
@@ -59,8 +59,8 @@ This is the **main entry point function** that should be called to process a bat
5959
- Type: `str`
6060
- This is the description of the batch. For example: **Pre-invitation (FIT)** or **Post-investigation Appointment NOT Required**
6161
- `latest_event_status`:
62-
- Type: `str | list[str] | None`
63-
- This is the status or list of statuses the subject(s) will get updated to after the batch has been processed. It is used to check that the subject(s) have been updated to the correct status after a batch has been printed. If not required, set to `None`.
62+
- Type: `str | list[str] |`
63+
- This is the status or list of statuses the subject(s) will get updated to after the batch has been processed. It is used to check that the subject(s) have been updated to the correct status after a batch has been printed.
6464

6565
#### Optional Arguments
6666

0 commit comments

Comments
 (0)