Skip to content

Commit 0f003dc

Browse files
fix: organize imports in serialization.py
Co-Authored-By: Aaron <AJ> Steers <[email protected]>
1 parent 357f7dc commit 0f003dc

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

airbyte/http_caching/serialization.py

+8-3
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,17 @@
66
import json
77
import logging
88
from enum import Enum
9-
from typing import TYPE_CHECKING, Any, Protocol
9+
from typing import TYPE_CHECKING, Any, Protocol, cast
1010

11-
from mitmproxy.http import HTTPFlow
1211
from mitmproxy.io import io
1312

1413

14+
if TYPE_CHECKING:
15+
from pathlib import Path
16+
17+
from mitmproxy.http import HTTPFlow
18+
19+
1520
logger = logging.getLogger(__name__)
1621

1722

@@ -123,7 +128,7 @@ def deserialize(self, path: Path) -> T_SerializedData:
123128

124129
if flows and len(flows) > 0:
125130
flow = flows[0]
126-
http_flow = flow # type: HTTPFlow
131+
http_flow = cast("HTTPFlow", flow)
127132
return {
128133
"type": "http",
129134
"request": http_flow.request.get_state() if http_flow.request else {},

0 commit comments

Comments
 (0)