@@ -371,8 +371,7 @@ def __init__(
371371 _get_value : Optional [Callable [[LengthandGetLike_T , int ], _Dataset_T ]] = None ,
372372 _length : Optional [Union [int , Callable [[Any ], int ]]] = None ,
373373 ** overflow_kwargs : Overflow_In ,
374- ) -> None :
375- ...
374+ ) -> None : ...
376375
377376 # Has __len__, require _get_value to be set
378377 @overload
@@ -385,8 +384,7 @@ def __init__(
385384 _get_value : Callable [[LengthLike_T , int ], _Dataset_T ],
386385 _length : Optional [Union [int , Callable [[Any ], int ]]] = None ,
387386 ** overflow_kwargs : Overflow_In ,
388- ) -> None :
389- ...
387+ ) -> None : ...
390388
391389 # Has __getitem__, require _length to be set
392390 @overload
@@ -399,8 +397,7 @@ def __init__(
399397 _get_value : Optional [Callable [[GetLike_T , int ], _Dataset_T ]] = None ,
400398 _length : Union [int , Callable [[GetLike_T ], int ]],
401399 ** overflow_kwargs : Overflow_In ,
402- ) -> None :
403- ...
400+ ) -> None : ...
404401
405402 # Does not support __getitem__ and __len__
406403 @overload
@@ -413,8 +410,7 @@ def __init__(
413410 _get_value : Callable [[Any , int ], _Dataset_T ],
414411 _length : Union [int , Callable [[Any ], int ]],
415412 ** overflow_kwargs : Overflow_In ,
416- ) -> None :
417- ...
413+ ) -> None : ...
418414
419415 def __init__ (
420416 self ,
0 commit comments