(self, uri=None)
| 55 | return error |
| 56 | |
| 57 | def __call__(self, uri=None): |
| 58 | if self.redirect_uri: |
| 59 | params = self.get_body() |
| 60 | loc = add_params_to_uri(self.redirect_uri, params, self.redirect_fragment) |
| 61 | return 302, "", [("Location", loc)] |
| 62 | return super().__call__(uri=uri) |
nothing calls this directly
no test coverage detected