Deprecated property ``inherit_schema``.
(self)
| 1149 | |
| 1150 | @property |
| 1151 | def inherit_schema(self) -> bool: |
| 1152 | "Deprecated property ``inherit_schema``." |
| 1153 | warn_deprecated( |
| 1154 | "The ``inherit_schema`` property is deprecated.", "2.1" |
| 1155 | ) |
| 1156 | return self._inherit_schema |
| 1157 | |
| 1158 | def _set_parent(self, parent, **kw): |
| 1159 | # set parent hook is when this type is associated with a column. |
nothing calls this directly
no test coverage detected