Closed carlosmmatos closed 1 month ago
since offset was of type int, it failed trying to convert NoneType to an integer when it was not set by default. Using the Optional[int] allows us to handle this situation to maintain our optional use of offset.
NoneType
since offset was of type int, it failed trying to convert
NoneType
to an integer when it was not set by default. Using the Optional[int] allows us to handle this situation to maintain our optional use of offset.