in cdsreaper/jobwatcher.py [0:0]
def job_is_starting(s: V1JobStatus)->bool:
"""
returns true if the given job is just starting up, i.e. it has a blank start_time, succeeded and failed counts
:param s: V1JobStatus object to be interrogated
:return: boolean
"""
return s.start_time is None and s.active is None and s.failed is None and s.succeeded is None