Decreases the indentation.
(self)
| 152 | self.current_indent += self.indent_increment |
| 153 | |
| 154 | def dedent(self) -> None: |
| 155 | """Decreases the indentation.""" |
| 156 | self.current_indent -= self.indent_increment |
| 157 | |
| 158 | def write_usage(self, prog: str, args: str = "", prefix: str | None = None) -> None: |
| 159 | """Writes a usage line into the buffer. |
no outgoing calls
no test coverage detected