(self, format_string, args, kwargs)
| 203 | return self.vformat(format_string, args, kwargs) |
| 204 | |
| 205 | def vformat(self, format_string, args, kwargs): |
| 206 | used_args = set() |
| 207 | result, _ = self._vformat(format_string, args, kwargs, used_args, 2) |
| 208 | self.check_unused_args(used_args, args, kwargs) |
| 209 | return result |
| 210 | |
| 211 | def _vformat(self, format_string, args, kwargs, used_args, recursion_depth, |
| 212 | auto_arg_index=0): |
no test coverage detected