Repository URL to install this package:
|
Version:
0.1.14-1 ▾
|
# SPDX-License-Identifier: MIT
# Copyright (C) 2022 Max Bachmann
from __future__ import annotations
from typing import Hashable, Sequence, TypeVar
_StringType = TypeVar("_StringType", bound=Sequence[Hashable])
def default_process(sentence: _StringType) -> _StringType: ...