Skip to content

Commit

Permalink
fix type for py3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
KazuCocoa committed Nov 9, 2024
1 parent 3509353 commit 96533c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion appium/webdriver/appium_connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
_HEADER_IDEMOTENCY_KEY = 'X-Idempotency-Key'


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

0 comments on commit 96533c8

Please sign in to comment.