File tree Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -4098,8 +4098,6 @@ def _parse_chunk_encoding_v3(
40984098 else :
40994099 if isinstance (filters , dict | Codec ):
41004100 maybe_array_array = (filters ,)
4101- elif filters is None :
4102- maybe_array_array = ()
41034101 else :
41044102 maybe_array_array = cast (Iterable [Codec | dict [str , JSON ]], filters )
41054103 out_array_array = tuple (_parse_array_array_codec (c ) for c in maybe_array_array )
@@ -4111,15 +4109,11 @@ def _parse_chunk_encoding_v3(
41114109
41124110 if compressors is None :
41134111 out_bytes_bytes = ()
4114-
41154112 elif compressors == "auto" :
41164113 out_bytes_bytes = default_bytes_bytes
4117-
41184114 else :
41194115 if isinstance (compressors , dict | Codec ):
41204116 maybe_bytes_bytes = (compressors ,)
4121- elif compressors is None :
4122- maybe_bytes_bytes = ()
41234117 else :
41244118 maybe_bytes_bytes = cast (Iterable [Codec | dict [str , JSON ]], compressors )
41254119
You can’t perform that action at this time.
0 commit comments