square-nail-98606
07/19/2025, 8:27 PM# pants: do-not-include
and if a import is tagged, I want to:
1. Replace import with a lazy import:
import torch
becomes
torch = lazy_import(torch)
2. for that dependency I also want to same functionality as # pants: do-not-infer
, so the dependency should not be inferred.
What is the best approach for doing this?