(self, **kw: Any)
| 83 | """ |
| 84 | |
| 85 | def __init__(self, **kw: Any) -> None: |
| 86 | self.delta = timedelta(**kw) |
| 87 | |
| 88 | def update_headers(self, response: HTTPResponse) -> dict[str, str]: |
| 89 | expires = expire_after(self.delta) |
nothing calls this directly
no outgoing calls
no test coverage detected