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(
4098
4098
else :
4099
4099
if isinstance (filters , dict | Codec ):
4100
4100
maybe_array_array = (filters ,)
4101
- elif filters is None :
4102
- maybe_array_array = ()
4103
4101
else :
4104
4102
maybe_array_array = cast (Iterable [Codec | dict [str , JSON ]], filters )
4105
4103
out_array_array = tuple (_parse_array_array_codec (c ) for c in maybe_array_array )
@@ -4111,15 +4109,11 @@ def _parse_chunk_encoding_v3(
4111
4109
4112
4110
if compressors is None :
4113
4111
out_bytes_bytes = ()
4114
-
4115
4112
elif compressors == "auto" :
4116
4113
out_bytes_bytes = default_bytes_bytes
4117
-
4118
4114
else :
4119
4115
if isinstance (compressors , dict | Codec ):
4120
4116
maybe_bytes_bytes = (compressors ,)
4121
- elif compressors is None :
4122
- maybe_bytes_bytes = ()
4123
4117
else :
4124
4118
maybe_bytes_bytes = cast (Iterable [Codec | dict [str , JSON ]], compressors )
4125
4119
You can’t perform that action at this time.
0 commit comments