Check if cache entry has expired.
(self)
| 25 | checksum: str |
| 26 | |
| 27 | def is_expired(self) -> bool: |
| 28 | """Check if cache entry has expired.""" |
| 29 | return datetime.now(timezone.utc) >= self.expires_at |
| 30 | |
| 31 | def __hash__(self) -> str: |
| 32 | """Get cache entry hash.""" |
no outgoing calls