Browse Source

fix: import Optional in portfolio router

unknown 3 tháng trước cách đây
mục cha
commit
ec5c4edd47
1 tập tin đã thay đổi với 1 bổ sung0 xóa
  1. 1 0
      backend/routers/portfolio.py

+ 1 - 0
backend/routers/portfolio.py

@@ -1,4 +1,5 @@
 from fastapi import APIRouter, Depends, HTTPException, Form, UploadFile, File
+from typing import Optional
 import db
 import schemas
 import auth_utils