Johnny
Johnny
Removed all mentions of "Province of China" from Taiwan's entry. ### Reasoning: Taiwan's status as a country may be controversial due to China's "loud interference" in this matter, but factually...
Resolves phillipdupuis/pydantic-to-typescript#60
## Description of problem Given a Pydantic model with Chinese attributes: ```python class TrialRecord(BaseModel): 學號: str ``` OR with a Chinese alias: ```python class TrialRecord(BaseModel): student_id: str = Field(alias="學號") ```...