Skip to content

Commit

Permalink
use Tuple or python 3.8 and lower
Browse files Browse the repository at this point in the history
  • Loading branch information
KazuCocoa committed Nov 1, 2024
1 parent cf337b9 commit d37e6df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion appium/webdriver/webdriver.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ class AppiumLocatorConverter:
to the Appium server as-is.
"""

def convert(self, by: str, value: str) -> tuple[str, str]:
def convert(self, by: str, value: str) -> Tuple[str, str]:
return (by, value)


Expand Down

0 comments on commit d37e6df

Please sign in to comment.