kopia lustrzana https://github.com/ihabunek/toot
Add type annotations
rodzic
45fd2901de
commit
7726b01000
|
@ -3,7 +3,7 @@ import sys
|
|||
import urwid
|
||||
import webbrowser
|
||||
|
||||
from typing import Optional
|
||||
from typing import List, Optional
|
||||
|
||||
from .entities import Status
|
||||
from .scroll import Scrollable, ScrollBar
|
||||
|
@ -45,13 +45,14 @@ class Timeline(urwid.Columns):
|
|||
"copy-status", # Copy status to clipboard
|
||||
]
|
||||
|
||||
def __init__(self,
|
||||
def __init__(
|
||||
self,
|
||||
tui: "app.TUI",
|
||||
name,
|
||||
statuses,
|
||||
focus=0,
|
||||
is_thread=False):
|
||||
|
||||
name: str,
|
||||
statuses: List[Status],
|
||||
focus: int = 0,
|
||||
is_thread: bool = False
|
||||
):
|
||||
self.tui = tui
|
||||
self.name = name
|
||||
self.is_thread = is_thread
|
||||
|
|
Ładowanie…
Reference in New Issue