#do it without if statements
def is_after(t1, t2):
	"""takes two time objects
	returns True if t1 follows t2 chronologically
	"""
	time1 = '{:d}{:d}{:d}'.format(t1.hour, t1.minute, t1.second)
	time1 = '{:d}{:d}{:d}'.format(t1.hour, t1.minute, t1.second)
	return int(time1) > int(time2)