Skip to content

Commit

Permalink
Use typing.Set instead set type
Browse files Browse the repository at this point in the history
  • Loading branch information
lutien authored and jgraham committed Apr 11, 2023
1 parent 6b3460f commit d53ed57
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tools/webdriver/webdriver/bidi/modules/input.py
Expand Up @@ -7,6 +7,7 @@
MutableMapping,
Optional,
Sequence,
Set,
Type,
TypeVar,
Union)
Expand Down Expand Up @@ -304,7 +305,7 @@ def scroll(self,
class Actions:
def __init__(self) -> None:
self.input_sources: List[InputSource] = []
self.seen_names: MutableMapping[str, set[str]] = defaultdict(set)
self.seen_names: MutableMapping[str, Set[str]] = defaultdict(Set)

def _add_source(self,
cls: Type[InputSourceType],
Expand Down

0 comments on commit d53ed57

Please sign in to comment.