(dict: Dict)
| 747 | |
| 748 | @staticmethod |
| 749 | def to_obj(dict: Dict) -> object: |
| 750 | result = ObjDictTools() |
| 751 | result.__dict__.update(dict) |
| 752 | return result |
| 753 | |
| 754 | @staticmethod |
| 755 | def to_dict(obj: object) -> Dict: |
nothing calls this directly
no test coverage detected