style(github_copilot): simplify _get_github_headers return type annotation

This commit is contained in:
Ishaan Jaffer 2026-04-17 13:27:47 -07:00
parent d369f0a1c1
commit 3aa63d524e
No known key found for this signature in database

View file

@ -194,7 +194,7 @@ class Authenticator:
if not os.path.exists(self.token_dir):
os.makedirs(self.token_dir, exist_ok=True)
def _get_github_headers(self, access_token: Optional[str] = None) -> Dict[str, str]:
def _get_github_headers(self, access_token: Optional[str] = None) -> dict:
"""
Generate standard GitHub headers for API requests.