(self, *args, **kwargs)
| 19 | test_pull_name: str | None = None |
| 20 | |
| 21 | def model_dump(self, *args, **kwargs): |
| 22 | dumped_dict = super().model_dump(*args, **kwargs) |
| 23 | # avoid leaking sensitive information |
| 24 | return dumped_dict |
| 25 | |
| 26 | def model_dump_json(self, *args, **kwargs): |
| 27 | dumped = super().model_dump_json(*args, **kwargs) |
nothing calls this directly
no test coverage detected