(meth: _T)
| 1380 | |
| 1381 | |
| 1382 | def _unwrap_classmethod(meth: _T) -> _T: |
| 1383 | if isinstance(meth, classmethod): |
| 1384 | return meth.__func__ # type: ignore |
| 1385 | else: |
| 1386 | return meth |
| 1387 | |
| 1388 | |
| 1389 | class hybrid_property(interfaces.InspectionAttrInfo, ORMDescriptor[_T]): |