(self, *s: object)
| 158 | return self.node(s, fg(40 + WHITE)) |
| 159 | |
| 160 | def reset(self, *s: object) -> colored: |
| 161 | return self.node(s or ('',), RESET_SEQ) |
| 162 | |
| 163 | def __add__(self, other: object) -> str: |
| 164 | return f"{self}{other}" |
no test coverage detected