(self, **kwargs)
| 121 | super().__init__(*args, **kwargs) |
| 122 | |
| 123 | def display(self, **kwargs): |
| 124 | super().display(**kwargs) |
| 125 | fmt = self.format_dict |
| 126 | if fmt.get('bar_format', None): |
| 127 | fmt['bar_format'] = fmt['bar_format'].replace( |
| 128 | '<bar/>', '{bar:10u}').replace('{bar}', '{bar:10u}') |
| 129 | else: |
| 130 | fmt['bar_format'] = '{l_bar}{bar:10u}{r_bar}' |
| 131 | self.tgio.write(self.format_meter(**fmt)) |
| 132 | |
| 133 | def clear(self, *args, **kwargs): |
| 134 | super().clear(*args, **kwargs) |
nothing calls this directly
no test coverage detected