mirror of
https://github.com/paul-nameless/tg
synced 2024-11-29 07:10:19 +00:00
fix type annotation
This commit is contained in:
parent
0037e361cf
commit
8c7615f62f
1 changed files with 3 additions and 1 deletions
|
@ -252,9 +252,11 @@ class MsgView:
|
||||||
function will remove message one by one from the start until selected
|
function will remove message one by one from the start until selected
|
||||||
message could be visible on the screen.
|
message could be visible on the screen.
|
||||||
"""
|
"""
|
||||||
selected_item_idx = None
|
selected_item_idx: Optional[int] = None
|
||||||
collected_items: List[Tuple[Tuple[str, ...], bool, int]] = []
|
collected_items: List[Tuple[Tuple[str, ...], bool, int]] = []
|
||||||
for ignore_before in range(len(msgs)):
|
for ignore_before in range(len(msgs)):
|
||||||
|
if selected_item_idx is not None:
|
||||||
|
break
|
||||||
collected_items = []
|
collected_items = []
|
||||||
line_num = self.h
|
line_num = self.h
|
||||||
for msg_idx, msg_item in msgs[ignore_before:]:
|
for msg_idx, msg_item in msgs[ignore_before:]:
|
||||||
|
|
Loading…
Reference in a new issue