f | class AnnoDoc(type): | f | class AnnoDoc(type): |
| | | |
n | def __new__(cls, name, bases, class_dict): | n | def __new__(cls, name, bases, dct): |
| new_cls = super().__new__(cls, name, bases, class_dict) | | new_cls = super().__new__(cls, name, bases, dct) |
| doc_lines = [] | | doc_lines = [] |
| if new_cls.__doc__: | | if new_cls.__doc__: |
| doc_lines.append(new_cls.__doc__.strip()) | | doc_lines.append(new_cls.__doc__.strip()) |
n | anns = {} | n | annotations = {} |
| for key, value in class_dict.get('__annotations__', {}).items(): | | for attr, annotation in dct.get('__annotations__', {}).items(): |
| if isinstance(value, str): | | if isinstance(annotation, str): |
| doc_lines.append(f'{key}: {value}') | | doc_lines.append(f'{attr}: {annotation}') |
| if key in class_dict: | | if attr in dct: |
| anns[key] = type(class_dict[key]) | | annotations[attr] = type(dct[attr]) |
| else: | | |
| pass | | |
| else: | | else: |
n | anns[key] = value | n | annotations[attr] = annotation |
| new_cls.__doc__ = '\n'.join(doc_lines) if doc_lines else None | | new_cls.__doc__ = '\n'.join(doc_lines) if doc_lines else None |
t | new_cls.__annotations__ = anns | t | new_cls.__annotations__ = annotations |
| return new_cls | | return new_cls |