Skip to content

Commit 0dca718

Browse files
authored
Remove text that older mypy versions don't support (#1287)
1 parent 9415acb commit 0dca718

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

logfire/_internal/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ def span_to_dict(span: ReadableSpan) -> ReadableSpanDict:
179179
class UnexpectedResponse(RequestException):
180180
"""An unexpected response was received from the server."""
181181

182-
response: Response # type: ignore (guaranteed to exist)
182+
response: Response # type: ignore
183183

184184
def __init__(self, response: Response) -> None:
185185
super().__init__(f'Unexpected response: {response.status_code}', response=response)

0 commit comments

Comments
 (0)