Skip to content

Commit d637815

Browse files
kskarthikpaolo-depa
authored andcommitted
docs: fix bug_info signature to use set[int] instead of list[int]
1 parent a4a0574 commit d637815

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ The server provides the following tools for interacting with Bugzilla:
2424

2525
#### Bug Information
2626

27-
- **`bug_info(bug_ids: list[int])`**: Retrieves comprehensive details for specified Bugzilla bug IDs.
27+
- **`bug_info(bug_ids: set[int])`**: Retrieves comprehensive details for specified Bugzilla bug IDs.
2828
- **Parameters**:
29-
- `bug_ids`: A list of bug IDs to fetch details for
29+
- `bug_ids`: A set of bug IDs to fetch details for
3030
- **Returns**: A dictionary containing the array `bugs` which lists all available information about the bugs (status, assignee, summary, description, extensions, etc.)
31-
- **Example**: `bug_info([12345, 67890])` returns complete bug details for the specified IDs.
31+
- **Example**: `bug_info({12345, 67890})` returns complete bug details for the specified IDs.
3232

3333
- **`bug_history(id: int, new_since: Optional[datetime] = None)`**: Fetches the history of changes for a given bug ID.
3434
- **Parameters**:

0 commit comments

Comments
 (0)