(o: typing.Any)
| 22073 | |
| 22074 | |
| 22075 | def CheckParent(o: typing.Any): |
| 22076 | return |
| 22077 | if not hasattr(o, "parent") or o.parent is None: |
| 22078 | raise ValueError(f"orphaned object {type(o)=}: parent is None") |
| 22079 | |
| 22080 | |
| 22081 | def CheckQuad(q: typing.Any) -> bool: |
no outgoing calls
no test coverage detected
searching dependent graphs…