In the example in the `README`, the code has two occurance of: ```py raise self.retry(exc=exc) ``` Where is the `retry` method defined in the example, and why is it using `self.retry` when it is not called from inside a class method?
In the example in the
README, the code has two occurance of:Where is the
retrymethod defined in the example, and why is it usingself.retrywhen it is not called from inside a class method?