Skip to content

Commit 09cc7a2

Browse files
committed
Fix typing issue in suggestion_list
1 parent cbe5d39 commit 09cc7a2

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/graphql/pyutils/suggestion_list.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
from array import array
21
from typing import Collection, Optional, List
32

43
__all__ = ["suggestion_list"]
@@ -38,7 +37,7 @@ class LexicalDistance:
3837

3938
_input: str
4039
_input_lower_case: str
41-
_input_list = List[int]
40+
_input_list: List[int]
4241
_rows: List[List[int]]
4342

4443
def __init__(self, input_: str):

0 commit comments

Comments
 (0)