Skip to content

Commit 8e8f485

Browse files
committed
chore: type: ignore 추가
1 parent 377ab04 commit 8e8f485

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/httpc/catcher/_catcher.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ def install_httpx(db_path: PathType, mode: ModeType):
126126
transport = transport_initializer.__enter__()
127127
atexit.register(transport_initializer.__exit__, None, None, None)
128128
# monkey patching transport
129-
httpx.AsyncClient.__init__.__kwdefaults__["transport"] = transport
129+
httpx.AsyncClient.__init__.__kwdefaults__["transport"] = transport # type: ignore
130130

131131
_httpx_installed = True
132132

@@ -144,6 +144,6 @@ def install_httpc(db_path: PathType, mode: ModeType):
144144
transport = transport_initializer.__enter__()
145145
atexit.register(transport_initializer.__exit__, None, None, None)
146146
# monkey patching transport
147-
httpc.AsyncClient.__init__.__kwdefaults__["transport"] = transport
147+
httpc.AsyncClient.__init__.__kwdefaults__["transport"] = transport # type: ignore
148148

149149
_httpc_installed = True

0 commit comments

Comments
 (0)