(self)
| 226 | |
| 227 | class TypeOpsSuite(Suite): |
| 228 | def setUp(self) -> None: |
| 229 | self.fx = TypeFixture(INVARIANT) |
| 230 | self.fx_co = TypeFixture(COVARIANT) |
| 231 | self.fx_contra = TypeFixture(CONTRAVARIANT) |
| 232 | |
| 233 | # expand_type |
| 234 |
nothing calls this directly
no test coverage detected