(self, **kwargs)
| 91 | super().__init__(*args, **kwargs) |
| 92 | |
| 93 | def display(self, **kwargs): |
| 94 | super().display(**kwargs) |
| 95 | fmt = self.format_dict |
| 96 | if fmt.get('bar_format', None): |
| 97 | fmt['bar_format'] = fmt['bar_format'].replace( |
| 98 | '<bar/>', '`{bar:10}`').replace('{bar}', '`{bar:10u}`') |
| 99 | else: |
| 100 | fmt['bar_format'] = '{l_bar}`{bar:10}`{r_bar}' |
| 101 | if fmt['ascii'] is False: |
| 102 | fmt['ascii'] = [":black_square:", ":small_blue_diamond:", ":large_blue_diamond:", |
| 103 | ":large_blue_square:"] |
| 104 | fmt['ncols'] = 336 |
| 105 | self.sio.write(self.format_meter(**fmt)) |
| 106 | |
| 107 | def clear(self, *args, **kwargs): |
| 108 | super().clear(*args, **kwargs) |
nothing calls this directly
no test coverage detected