Skip to content

Commit e00be69

Browse files
committed
Fix typing
1 parent 8818533 commit e00be69

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/together/utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from typing import Any, Dict, Optional
55

66
import requests
7-
import sseclient # type: ignore
7+
import sseclient
88

99
import together
1010

@@ -112,7 +112,7 @@ def create_post_request(
112112

113113

114114
def sse_client(response: requests.Response) -> sseclient.SSEClient:
115-
return sseclient.SSEClient(response)
115+
return sseclient.SSEClient(response) # type: ignore
116116

117117

118118
def create_get_request(

0 commit comments

Comments
 (0)