@@ -84,13 +84,11 @@ def unquote(s: AnyStr) -> str:
8484
8585
8686@overload
87- def get_quoter (encode : bool = True ) -> "Callable[[AnyStr], str]" :
88- ...
87+ def get_quoter (encode : bool = True ) -> "Callable[[AnyStr], str]" : ...
8988
9089
9190@overload
92- def get_quoter (encode : None ) -> "Callable[[str], str]" :
93- ...
91+ def get_quoter (encode : None ) -> "Callable[[str], str]" : ...
9492
9593
9694def get_quoter (
@@ -176,22 +174,19 @@ def normalize_version(
176174@overload
177175def normalize_qualifiers (
178176 qualifiers : Union [AnyStr , Dict [str , str ], None ], encode : "Literal[True]" = ...
179- ) -> Optional [str ]:
180- ...
177+ ) -> Optional [str ]: ...
181178
182179
183180@overload
184181def normalize_qualifiers (
185182 qualifiers : Union [AnyStr , Dict [str , str ], None ], encode : "Optional[Literal[False]]"
186- ) -> Optional [Dict [str , str ]]:
187- ...
183+ ) -> Optional [Dict [str , str ]]: ...
188184
189185
190186@overload
191187def normalize_qualifiers (
192188 qualifiers : Union [AnyStr , Dict [str , str ], None ], encode : Optional [bool ] = ...
193- ) -> Union [str , Dict [str , str ], None ]:
194- ...
189+ ) -> Union [str , Dict [str , str ], None ]: ...
195190
196191
197192def normalize_qualifiers (
@@ -286,8 +281,7 @@ def normalize(
286281 qualifiers : Union [AnyStr , Dict [str , str ], None ],
287282 subpath : Optional [AnyStr ],
288283 encode : "Literal[True]" = ...,
289- ) -> Tuple [str , Optional [str ], str , Optional [str ], Optional [str ], Optional [str ]]:
290- ...
284+ ) -> Tuple [str , Optional [str ], str , Optional [str ], Optional [str ], Optional [str ]]: ...
291285
292286
293287@overload
@@ -299,8 +293,7 @@ def normalize(
299293 qualifiers : Union [AnyStr , Dict [str , str ], None ],
300294 subpath : Optional [AnyStr ],
301295 encode : "Optional[Literal[False]]" ,
302- ) -> Tuple [str , Optional [str ], str , Optional [str ], Optional [Dict [str , str ]], Optional [str ]]:
303- ...
296+ ) -> Tuple [str , Optional [str ], str , Optional [str ], Optional [Dict [str , str ]], Optional [str ]]: ...
304297
305298
306299@overload
@@ -312,8 +305,9 @@ def normalize(
312305 qualifiers : Union [AnyStr , Dict [str , str ], None ],
313306 subpath : Optional [AnyStr ],
314307 encode : Optional [bool ] = ...,
315- ) -> Tuple [str , Optional [str ], str , Optional [str ], Union [str , Dict [str , str ], None ], Optional [str ]]:
316- ...
308+ ) -> Tuple [
309+ str , Optional [str ], str , Optional [str ], Union [str , Dict [str , str ], None ], Optional [str ]
310+ ]: ...
317311
318312
319313def normalize (
0 commit comments