File tree 1 file changed +3
-3
lines changed 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -287,7 +287,7 @@ async def run(self):
287
287
288
288
try :
289
289
self .line = '.'
290
- loop_result = await self .try_stop_on_index_error (prompt_session )
290
+ loop_result = await self .next_row (prompt_session )
291
291
if loop_result == LoopResult .CONTINUE : continue
292
292
elif loop_result == LoopResult .BREAK : break
293
293
@@ -1874,7 +1874,7 @@ async def run(self):
1874
1874
1875
1875
self .row += 1
1876
1876
1877
- async def try_stop_on_index_error (self , prompt_session :PromptSession ) -> LoopResult :
1877
+ async def next_row (self , prompt_session :PromptSession ) -> LoopResult :
1878
1878
try :
1879
1879
self .line = self .buf [self .row ]
1880
1880
if self .row == self .startrow :
@@ -1948,4 +1948,4 @@ async def mk_prompt(self, prompt_session:PromptSession):
1948
1948
bufline = list (filter (None , bufline .split (' ' )))
1949
1949
bufline = list (map (lambda b : b .replace (';' ,' ' ), bufline ))
1950
1950
1951
- return bufline
1951
+ return bufline
You can’t perform that action at this time.
0 commit comments