(self: ExtraAttrs)
| 387 | |
| 388 | |
| 389 | def convert_extra_attrs(self: ExtraAttrs) -> Json: |
| 390 | return { |
| 391 | ".class": "ExtraAttrs", |
| 392 | "attrs": {k: convert_type(v) for k, v in self.attrs.items()}, |
| 393 | "immutable": sorted(self.immutable), |
| 394 | "mod_name": self.mod_name, |
| 395 | } |
| 396 | |
| 397 | |
| 398 | def convert_type_alias_type(self: TypeAliasType) -> Json: |
no test coverage detected
searching dependent graphs…