Data passed to the mime hook
| 153 | |
| 154 | @dataclass |
| 155 | class InspectorHookData: |
| 156 | """Data passed to the mime hook""" |
| 157 | |
| 158 | obj: Any |
| 159 | info: Optional[OInfo] |
| 160 | info_dict: InfoDict |
| 161 | detail_level: int |
| 162 | omit_sections: list[str] |
| 163 | |
| 164 | |
| 165 | @undoc |
no outgoing calls
no test coverage detected
searching dependent graphs…