You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, this code implies that job.retries can be None. However, currently there is no way for that to be the case, and in the code we're basically treating None like -1. I think it would be appropriate to remove this guard and use type-checking to ensure that job.retries is always an integer.
The text was updated successfully, but these errors were encountered:
Currently, this code implies that job.retries can be None. However, currently there is no way for that to be the case, and in the code we're basically treating None like -1. I think it would be appropriate to remove this guard and use type-checking to ensure that job.retries is always an integer.
The text was updated successfully, but these errors were encountered: