File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments