(self, text: str, **style)
| 87 | self.filter = None |
| 88 | |
| 89 | def style(self, text: str, **style) -> str: |
| 90 | if style and self.out_has_vt_codes: |
| 91 | text = miniclick.style(text, **style) |
| 92 | return text |
| 93 | |
| 94 | def echo(self, text: str, ident=None, **style): |
| 95 | if ident: |
no outgoing calls
no test coverage detected