(self, msg: str, arg: ast3.arg)
| 1155 | return argument |
| 1156 | |
| 1157 | def fail_arg(self, msg: str, arg: ast3.arg) -> None: |
| 1158 | self.fail(ErrorMessage(msg), arg.lineno, arg.col_offset, blocker=True) |
| 1159 | |
| 1160 | # ClassDef(identifier name, |
| 1161 | # expr* bases, |
nothing calls this directly
no test coverage detected