Add authorization to the headers.
(self, headers: dict)
| 82 | """ |
| 83 | |
| 84 | def authentication(self, headers: dict) -> None: |
| 85 | """ |
| 86 | Add authorization to the headers. |
| 87 | """ |
| 88 | headers["Authorization"] = f"{self.token_type} {self.token}" |
| 89 | |
| 90 | def mask_authentication(self, headers: dict) -> None: |
| 91 | """ |