Skip to content

Commit

Permalink
chore(core): proper typing on eta in yt-dlp progress hook
Browse files Browse the repository at this point in the history
Signed-off-by: Jordan Shatford <[email protected]>
  • Loading branch information
jordanshatford committed Oct 23, 2023
1 parent 9b93ece commit f330b49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/ydcore/config/ytdlp.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class ProgressHookInfo(TypedDict):
total_bytes: NotRequired[int | None]
total_bytes_estimate: NotRequired[int | None]
elapsed: NotRequired[float | None]
eta: NotRequired[int | None]
eta: NotRequired[float | None]
speed: NotRequired[float | None]
fragment_index: NotRequired[int | None]
fragment_count: NotRequired[int | None]
Expand Down

0 comments on commit f330b49

Please sign in to comment.