(self)
| 643 | |
| 644 | @property |
| 645 | def default_headers(self) -> dict[str, str | Omit]: |
| 646 | return { |
| 647 | "Accept": "application/json", |
| 648 | "Content-Type": "application/json", |
| 649 | "User-Agent": self.user_agent, |
| 650 | **self.platform_headers(), |
| 651 | **self.auth_headers, |
| 652 | **self._custom_headers, |
| 653 | } |
| 654 | |
| 655 | @property |
| 656 | def default_query(self) -> dict[str, object]: |
nothing calls this directly
no test coverage detected