(self, context: Context)
| 2139 | ) |
| 2140 | |
| 2141 | def unreachable_statement(self, context: Context) -> None: |
| 2142 | self.fail("Statement is unreachable", context, code=codes.UNREACHABLE) |
| 2143 | |
| 2144 | def redundant_left_operand(self, op_name: str, context: Context) -> None: |
| 2145 | """Indicates that the left operand of a boolean expression is redundant: |
no test coverage detected