We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b8f62ae + 9f27eb3 commit ab3d21cCopy full SHA for ab3d21c
1 file changed
misc/bazel/internal/git_lfs_probe.py
@@ -18,14 +18,15 @@
18
import re
19
import base64
20
from dataclasses import dataclass
21
+from typing import Dict
22
23
24
@dataclass
25
class Endpoint:
26
href: str
- headers: dict[str, str]
27
+ headers: Dict[str, str]
28
- def update_headers(self, d: dict[str, str]):
29
+ def update_headers(self, d: Dict[str, str]):
30
self.headers.update((k.capitalize(), v) for k, v in d.items())
31
32
0 commit comments