f | class AnnoDoc(type): | f | class AnnoDoc(type): |
| | | |
n | def __new__(cls, name, bases, dct): | n | def __new__(cls, name, bases, class_dict): |
| new_cls = super().__new__(cls, name, bases, dct) | | new_cls = super().__new__(cls, name, bases, class_dict) |
| 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 | annotations = {} | n | anns = {} |
| for attr, annotation in dct.get('__annotations__', {}).items(): | | for key, value in class_dict.get('__annotations__', {}).items(): |
| if isinstance(annotation, str): | | if isinstance(value, str): |
| doc_lines.append(f'{attr}: {annotation}') | | doc_lines.append(f'{key}: {value}') |
| if attr in dct: | | if key in class_dict: |
| annotations[attr] = type(dct[attr]) | | anns[key] = type(class_dict[key]) |
| | | else: |
| | | pass |
| else: | | else: |
n | annotations[attr] = annotation | n | anns[key] = value |
| 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__ = annotations | t | new_cls.__annotations__ = anns |
| return new_cls | | return new_cls |