File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -19,9 +19,9 @@ class AsyncCachingTransport(httpx.AsyncBaseTransport):
19
19
def __init__ (
20
20
self ,
21
21
transport : httpx .AsyncBaseTransport ,
22
- cache : AsyncDictCache = None ,
22
+ cache : Optional [ AsyncDictCache ] = None ,
23
23
cache_etags : bool = True ,
24
- heuristic : BaseHeuristic = None ,
24
+ heuristic : Optional [ BaseHeuristic ] = None ,
25
25
cacheable_methods : Iterable [str ] = ("GET" ,),
26
26
cacheable_status_codes : Iterable [int ] = (
27
27
200 ,
Original file line number Diff line number Diff line change @@ -19,9 +19,9 @@ class SyncCachingTransport(httpx.BaseTransport):
19
19
def __init__ (
20
20
self ,
21
21
transport : httpx .BaseTransport ,
22
- cache : SyncDictCache = None ,
22
+ cache : Optional [ SyncDictCache ] = None ,
23
23
cache_etags : bool = True ,
24
- heuristic : BaseHeuristic = None ,
24
+ heuristic : Optional [ BaseHeuristic ] = None ,
25
25
cacheable_methods : Iterable [str ] = ("GET" ,),
26
26
cacheable_status_codes : Iterable [int ] = (
27
27
200 ,
You can’t perform that action at this time.
0 commit comments