Add empty metadata to mark that we've finished processing this class.
(info: TypeInfo)
| 503 | |
| 504 | |
| 505 | def _add_empty_metadata(info: TypeInfo) -> None: |
| 506 | """Add empty metadata to mark that we've finished processing this class.""" |
| 507 | info.metadata["attrs"] = {"attributes": [], "frozen": False} |
| 508 | |
| 509 | |
| 510 | def _detect_auto_attribs(ctx: mypy.plugin.ClassDefContext) -> bool: |
no outgoing calls
no test coverage detected
searching dependent graphs…