Commit 74ed6970 authored by Simon Will's avatar Simon Will
Browse files

Fix bug in type annotation

parent e4f9b525
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -18,7 +18,7 @@ verses = [
CLITICS = ['que', 'qve', 'ue', 've', 'ne']


def get_clitic(token: str) -> Tuple(str, str):
def get_clitic(token: str) -> Tuple[str, str]:
    """Split a clitic from the token if possible.

    :param token: A token that may contain a clitic.