(hints_template: TAny)
| 660 | |
| 661 | @staticmethod |
| 662 | def _clone_hints(hints_template: TAny) -> TAny: |
| 663 | if hints_template is None: |
| 664 | return None |
| 665 | # creates a deep copy of dict structure without actually copying the objects |
| 666 | return clone_dict_nested(hints_template) |
| 667 | |
| 668 | def _resolve_hint( |
| 669 | self, hint_name: str, item: TDataItem, hint: TTableHintTemplate[TAny] |
no test coverage detected