(*args, **kwargs)
| 15 | from .deliverability import caching_resolver |
| 16 | else: |
| 17 | def caching_resolver(*args, **kwargs): |
| 18 | # Lazy load `deliverability` as it is slow to import (due to dns.resolver) |
| 19 | from .deliverability import caching_resolver |
| 20 | |
| 21 | return caching_resolver(*args, **kwargs) |
| 22 | |
| 23 | |
| 24 | # These global attributes are a part of the library's API and can be |
no outgoing calls