Method
__init__
(
self,
compact: bool = False,
elapsed_when_finished: bool = False,
table_column: Optional[Column] = None,
)
Source from the content-addressed store, hash-verified
| 781 | max_refresh = 0.5 |
| 782 | |
| 783 | def __init__( |
| 784 | self, |
| 785 | compact: bool = False, |
| 786 | elapsed_when_finished: bool = False, |
| 787 | table_column: Optional[Column] = None, |
| 788 | ): |
| 789 | self.compact = compact |
| 790 | self.elapsed_when_finished = elapsed_when_finished |
| 791 | super().__init__(table_column=table_column) |
| 792 | |
| 793 | def render(self, task: "Task") -> Text: |
| 794 | """Show time remaining.""" |
Callers
nothing calls this directly
Tested by
no test coverage detected