Method
__init__
(
self, binary_units: bool = False, table_column: Optional[Column] = None
)
Source from the content-addressed store, hash-verified
| 870 | """ |
| 871 | |
| 872 | def __init__( |
| 873 | self, binary_units: bool = False, table_column: Optional[Column] = None |
| 874 | ) -> None: |
| 875 | self.binary_units = binary_units |
| 876 | super().__init__(table_column=table_column) |
| 877 | |
| 878 | def render(self, task: "Task") -> Text: |
| 879 | """Calculate common unit for completed and total.""" |
Callers
nothing calls this directly
Tested by
no test coverage detected