| 205 | |
| 206 | # Test independent class, not inheriting kw_only_default |
| 207 | class IndependentModel(metaclass=CustomMeta): |
| 208 | x: int |
| 209 | y: str |
| 210 | |
| 211 | # Should allow positional arguments |
| 212 | independent = IndependentModel(1, "test") |
no outgoing calls
searching dependent graphs…