Yakova commited on
Commit
e66c876
·
verified ·
1 Parent(s): b81dfff

Update App/Youtube/Schema.py

Browse files
Files changed (1) hide show
  1. App/Youtube/Schema.py +2 -2
App/Youtube/Schema.py CHANGED
@@ -1,5 +1,5 @@
1
- from pydantic import BaseModel, Field, HttpUrl, Optional
2
-
3
 
4
  class YouTubeUploadTask(BaseModel):
5
  filename: HttpUrl = Field(..., description="URL of the video file to upload")
 
1
+ from pydantic import BaseModel, Field, HttpUrl
2
+ from typing import Optional
3
 
4
  class YouTubeUploadTask(BaseModel):
5
  filename: HttpUrl = Field(..., description="URL of the video file to upload")