X Tutup
Skip to content

Commit 1db0436

Browse files
committed
Fix type annotation
1 parent 9c83806 commit 1db0436

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bpython/autocomplete.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -747,7 +747,7 @@ def get_completer(
747747
double underscore methods like __len__ in method signatures
748748
"""
749749

750-
def _cmpl_sort(x: str) -> Tuple[bool, ...]:
750+
def _cmpl_sort(x: str) -> Tuple[bool, str]:
751751
"""
752752
Function used to sort the matches.
753753
"""

0 commit comments

Comments
 (0)
X Tutup