def __init__(self):
"""
Start the timer.
:return: Object instance.
"""
# Note that time.process_time() doesn't work with multiprocessing.
self.start_time = time.time()
self.end_time = self.start_time