Files
mnote/wolai-backend/.venv312/Lib/site-packages/pypinyin/exceptions.pyi
T

9 lines
228 B
Python
Raw Normal View History

2025-12-08 19:56:24 +08:00
from typing import Union, Text, ByteString
class PinyinNotFoundException(Exception):
message: Union[Text, ByteString]
chars: Union[Text, ByteString]
def __init__(self, chars: Union[Text, ByteString]) -> None: ...