Skip to content

Commit 7b1f266

Browse files
akxjohtso
authored andcommitted
Fix usages of implicit optional types
1 parent faac354 commit 7b1f266

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

httpx_caching/_async/_transport.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ class AsyncCachingTransport(httpx.AsyncBaseTransport):
1919
def __init__(
2020
self,
2121
transport: httpx.AsyncBaseTransport,
22-
cache: AsyncDictCache = None,
22+
cache: Optional[AsyncDictCache] = None,
2323
cache_etags: bool = True,
24-
heuristic: BaseHeuristic = None,
24+
heuristic: Optional[BaseHeuristic] = None,
2525
cacheable_methods: Iterable[str] = ("GET",),
2626
cacheable_status_codes: Iterable[int] = (
2727
200,

httpx_caching/_sync/_transport.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ class SyncCachingTransport(httpx.BaseTransport):
1919
def __init__(
2020
self,
2121
transport: httpx.BaseTransport,
22-
cache: SyncDictCache = None,
22+
cache: Optional[SyncDictCache] = None,
2323
cache_etags: bool = True,
24-
heuristic: BaseHeuristic = None,
24+
heuristic: Optional[BaseHeuristic] = None,
2525
cacheable_methods: Iterable[str] = ("GET",),
2626
cacheable_status_codes: Iterable[int] = (
2727
200,

0 commit comments

Comments
 (0)