Fix type sig
This commit is contained in:
parent
ce486e9244
commit
f358d76409
@ -67,7 +67,7 @@ def name(cp: Union[int, str]) -> str:
|
|||||||
|
|
||||||
|
|
||||||
@lru_cache(maxsize=256)
|
@lru_cache(maxsize=256)
|
||||||
def codepoints_matching_search(parts: Sequence[str]) -> List[int]:
|
def codepoints_matching_search(parts: Tuple[str, ...]) -> List[int]:
|
||||||
ans = []
|
ans = []
|
||||||
if parts and parts[0] and len(parts[0]) > 1:
|
if parts and parts[0] and len(parts[0]) > 1:
|
||||||
codepoints = points_for_word(parts[0])
|
codepoints = points_for_word(parts[0])
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user