Skip to content

Commit 96533c8

Browse files
committed
fix type for py3.8
1 parent 3509353 commit 96533c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

appium/webdriver/appium_connection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
_HEADER_IDEMOTENCY_KEY = 'X-Idempotency-Key'
2929

3030

31-
def _get_new_headers(key: str, headers: dict[str, str]) -> dict[str, str]:
31+
def _get_new_headers(key: str, headers: Dict[str, str]) -> Dict[str, str]:
3232
"""Return a new dictionary of heafers without the given key.
3333
The key match is case-insensitive."""
3434
new_headers = dict()

0 commit comments

Comments
 (0)