로딩
요청 처리 중입니다...

[FastAPI] 파이썬 3.10 TypeError: Fields of type &quot;<class 'types.UnionType'>&quot; are not supported.

 [FastAPI] 파이썬 3.10 TypeError: Fields of type &quot;<class 'types.UnionType'>&quot; are not supported.

문제 원인 "FastAPI"를 사용 중이며, "pydantic"에서 "Python3.10"에서 지원하는 "|" 유니온 타입이 지원이 되고 있지 않다고 합니다. 차후 "pydantic"에서 버그 및 문제를 해 결해야 사용해 볼 수 있을 것 같습니다.

당분간 이전 방식으로 "Optional[]" 방식으로 사용해야 될 것 같습니다. class UserBase(BaseModel): id: Optional[str] = None 참고 링크 python 3.10 TypeError: Fields of type "" are not supported. - Google Search All Videos News Images Maps Shopping Books Search tools Pydantic fails with Python 3.10 new UnionType · Issue #3300 - GitHub github.com › samuelcolvin › pyda...

# python # supported # uniontype # 파이썬