(self, *args, **kwargs)
| 397 | return stdout |
| 398 | |
| 399 | def git_throwing_silently(self, *args, **kwargs): |
| 400 | return self.git( |
| 401 | *args, |
| 402 | throw_on_error=True, |
| 403 | show_panel_on_error=False, |
| 404 | **kwargs |
| 405 | ) |
| 406 | |
| 407 | def get_encoding_candidates(self): |
| 408 | # type: () -> Sequence[str] |
no test coverage detected