Skip to content

Commit 0321cc7

Browse files
committed
clean up
1 parent df37e36 commit 0321cc7

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

jigsawstack/summary.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from typing import Any, Dict, List, Union, cast, Optional, Literal
1+
from typing import Any, Dict, List, Union, cast, Literal
22
from typing_extensions import NotRequired, TypedDict
33
from .request import Request, RequestConfig
44
from typing import List, Union
@@ -61,7 +61,9 @@ def __init__(
6161
disable_request_logging=disable_request_logging,
6262
)
6363

64-
def summarize(self, params: SummaryParams) -> SummaryResponse | SummaryListResponse:
64+
def summarize(
65+
self, params: SummaryParams
66+
) -> Union[SummaryResponse, SummaryListResponse]:
6567
path = "/ai/summary"
6668
resp = Request(
6769
config=self.config,

0 commit comments

Comments
 (0)