def __enter__()

in src/functions_framework/request_timeout.py [0:0]


    def __enter__(self):
        self.timer = threading.Timer(self.seconds, self._raise_exc)
        self.timer.start()
        return self