(self, *args, **kwargs)
| 107 | return None |
| 108 | |
| 109 | async def get(self, *args, **kwargs): |
| 110 | request = httpx.Request( |
| 111 | "GET", |
| 112 | "https://accounts.google.com/signin?continue=foo&f.sid=bar#access_token=frag", |
| 113 | ) |
| 114 | return httpx.Response(200, content=b"<html>Login</html>", request=request) |
| 115 | |
| 116 | # Seam-aliased object-attribute patches (ADR-0007): patches the owning |
| 117 | # ``_auth.refresh`` module so bare-name lookups inside |
no outgoing calls
no test coverage detected