f | class AnnoDoc(type): | f | class AnnoDoc(type): |
| | | |
n | def __new__(cls, name, bases, dct): | n | def __new__(metacls, cls_name, cls_bases, cls_dict): |
| new_cls = super().__new__(cls, name, bases, dct) | | cls_instance = super().__new__(metacls, cls_name, cls_bases, cls |
| | | _dict) |
| doc_lines = [] | | doc_parts = [] |
| if new_cls.__doc__: | | if cls_instance.__doc__: |
| doc_lines.append(new_cls.__doc__) | | doc_parts.append(cls_instance.__doc__) |
| annotations = {} | | annots = {} |
| for key, annotation in dct.get('__annotations__', {}).items(): | | for attr_name, attr_type in cls_dict.get('__annotations__', {}). |
| | | items(): |
| if isinstance(annotation, str): | | if isinstance(attr_type, str): |
| doc_lines.append(f'{key}: {annotation}') | | doc_parts.append(f'{attr_name}: {attr_type}') |
| if key not in dct: | | if attr_name not in cls_dict: |
| continue | | continue |
t | annotations[key] = type(dct[key]) if key in dct else annotat | t | annots[attr_name] = type(cls_dict[attr_name]) if attr_name i |
| ion | | n cls_dict else attr_type |
| new_cls.__doc__ = '\n'.join(doc_lines) if doc_lines else None | | cls_instance.__doc__ = '\n'.join(doc_parts) if doc_parts else No |
| | | ne |
| new_cls.__annotations__ = annotations | | cls_instance.__annotations__ = annots |
| return new_cls | | return cls_instance |