:meta private:
(cls, dumper, data)
| 921 | |
| 922 | @classmethod |
| 923 | def to_yaml(cls, dumper, data): |
| 924 | """ |
| 925 | :meta private: |
| 926 | """ |
| 927 | add_numpy_pandas_representers() |
| 928 | return dumper.represent_mapping(cls.yaml_tag, data.serialize(dumper.stream), flow_style=cls.yaml_flow_style) |
| 929 | |
| 930 | @classmethod |
| 931 | def from_yaml(cls, loader, node): |
nothing calls this directly
no test coverage detected