I'm noticing that setting `[python-infer].unowned_...
# general
h
I'm noticing that setting
[python-infer].unowned_dependency_behavior = "error"
has unfortunate consequences in cases such as
Copy code
if TYPE_CHECKING:
    import something
1
Possibly that should be inferred as a weak dep
👍 1
c
I guess it's workaroundable by using
# pants: ignore-dep
.
h
Yeah, but better not to require that
c
Indeed