| 161 | |
| 162 | # Test basic functionality - without kw_only_default |
| 163 | class SimpleModel(metaclass=CustomMeta): |
| 164 | x: int |
| 165 | y: str |
| 166 | |
| 167 | # Verify the class was created correctly |
| 168 | assert isinstance(SimpleModel, CustomMeta) |
no outgoing calls
searching dependent graphs…