Returns: str: a yaml string representation of the config
(self, *args, **kwargs)
| 70 | self.update(new_config) |
| 71 | |
| 72 | def dump(self, *args, **kwargs): |
| 73 | """ |
| 74 | Returns: |
| 75 | str: a yaml string representation of the config |
| 76 | """ |
| 77 | # to make it show up in docs |
| 78 | return super().dump(*args, **kwargs) |
| 79 | |
| 80 | |
| 81 | global_cfg = CfgNode() |
no outgoing calls