Returns: str: a yaml string representation of the config
(self, *args, **kwargs)
| 85 | self.update(new_config) |
| 86 | |
| 87 | def dump(self, *args, **kwargs): |
| 88 | """ |
| 89 | Returns: |
| 90 | str: a yaml string representation of the config |
| 91 | """ |
| 92 | # to make it show up in docs |
| 93 | return super().dump(*args, **kwargs) |
| 94 | |
| 95 | |
| 96 | global_cfg = CfgNode() |
no outgoing calls