(self)
| 1614 | f"without following parameters.", line_number=lineno) |
| 1615 | |
| 1616 | def check_previous_star(self) -> None: |
| 1617 | assert isinstance(self.function, Function) |
| 1618 | |
| 1619 | if self.keyword_only: |
| 1620 | fail(f"Function {self.function.name!r} uses '*' more than once.") |
| 1621 | |
| 1622 | |
| 1623 | def do_post_block_processing_cleanup(self, lineno: int) -> None: |
no test coverage detected