rcp ars should be a sequnce not a set

This commit is contained in:
Kovid Goyal
2022-08-16 12:10:15 +05:30
parent e8de2def96
commit a75235a260
5 changed files with 11 additions and 11 deletions

View File

@@ -14,8 +14,8 @@ from gettext import gettext as _
from itertools import chain
from time import monotonic
from typing import (
TYPE_CHECKING, Any, Callable, Deque, Dict, FrozenSet, Iterable, List,
NamedTuple, Optional, Pattern, Sequence, Tuple, Union
TYPE_CHECKING, Any, Callable, Deque, Dict, Iterable, List, NamedTuple,
Optional, Pattern, Sequence, Tuple, Union
)
from .child import ProcessDesc
@@ -472,7 +472,7 @@ class Window:
copy_colors_from: Optional['Window'] = None,
watchers: Optional[Watchers] = None,
allow_remote_control: bool = False,
remote_control_passwords: Optional[Dict[str, FrozenSet[str]]] = None,
remote_control_passwords: Optional[Dict[str, Sequence[str]]] = None,
):
if watchers:
self.watchers = watchers