Merge "Don't call super() in Timer class __init__ method"

This commit is contained in:
Zuul 2019-10-19 04:27:19 +00:00 committed by Gerrit Code Review
commit 607c934b36
1 changed files with 0 additions and 1 deletions

View File

@ -875,7 +875,6 @@ class Timer(object):
finishes without rising TimerTimeout.
"""
def __init__(self, timeout=None, raise_exception=True):
super(Timer, self).__init__()
self.start = self.delta = None
self._timeout = int(timeout) if timeout else None
self._timeout_flag = False