(self, key: str, context: Context)
| 1534 | ) |
| 1535 | |
| 1536 | def key_not_in_mapping(self, key: str, context: Context) -> None: |
| 1537 | self.fail(f'Key "{key}" not found in mapping', context, code=codes.STRING_FORMATTING) |
| 1538 | |
| 1539 | def string_interpolation_mixing_key_and_non_keys(self, context: Context) -> None: |
| 1540 | self.fail( |
no test coverage detected