blob: ea7119b33e3ac85de2fd7352d5e521b1a80e9dc1 [file] [log] [blame]
class Conference(object):
def __init__(self):
self.talks = []
def getTalkAt(self, hour):
for start, end, name in self.talks:
<selection>if hour >= start and hour < end: return name</selection>