Minor typing question... I'm seeing `pants.core.go...
# general
a
Minor typing question... I'm seeing
pants.core.goals.test.TestRequest.rules()
being annotated as
Iterable
, which makes it
Iterable[Unknown]
. Is there a reason for this vs. it being
Iterable[Rule]
?
c
Probably no reason, in some places
rules()
are annotated. The type annotation might need to be
Iterable[Rule, UnionRule]