질문&답변
2024.06.19
TypeError: field Config is defined without type annotation
odmantic의 모델링 방식이 바뀐거 같습니다. 아래와 같이 코드를 수정했더니 해결됐습니다. # book.py # 강의에 나오는 코드 class Config: collection = "books" # 수정한 코드 model_config = {"collection": "books"}