let the captcha wait secs for the solution
(self, sec)
| 124 | return self.status |
| 125 | |
| 126 | def setWaiting(self, sec): |
| 127 | """ let the captcha wait secs for the solution """ |
| 128 | self.waitUntil = max(time() + sec, self.waitUntil) |
| 129 | self.status = "waiting" |
| 130 | |
| 131 | def isWaiting(self): |
| 132 | if self.result or self.error or time() > self.waitUntil: |
no outgoing calls
no test coverage detected