There is a type hint error here, time: int = None should be time: int = 0 or time: Optional[int] = None. To indicate that the int can be None, Optional is required.
time: int = None
time: int = 0
time: Optional[int] = None
changed milestone to %0.54.x
mentioned in commit 877a4f52
merged