File tree Expand file tree Collapse file tree 2 files changed +4
-8
lines changed Expand file tree Collapse file tree 2 files changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -68,13 +68,11 @@ def _splitlines(text: str):
6868
6969
7070@overload
71- def edit (text : str , edition : Edition ) -> str :
72- ...
71+ def edit (text : str , edition : Edition ) -> str : ...
7372
7473
7574@overload
76- def edit (text : str , select : Selection , edition : Edition ) -> str :
77- ...
75+ def edit (text : str , select : Selection , edition : Edition ) -> str : ...
7876
7977
8078def edit (text , select , edition = None ):
Original file line number Diff line number Diff line change 1919
2020class Selection (ABC ):
2121 @abstractmethod
22- def _select (self , lines : list [str ]) -> Iterator [slice ]:
23- ...
22+ def _select (self , lines : list [str ]) -> Iterator [slice ]: ...
2423
2524 @abstractmethod
26- def __rshift__ (self : T , op : _Select ) -> T :
27- ...
25+ def __rshift__ (self : T , op : _Select ) -> T : ...
2826
2927 def enumerate (self , lines : list [str ]) -> Iterator [tuple [int , str ]]:
3028 """Iterate over the selected lines"""
You can’t perform that action at this time.
0 commit comments