| 300 | |
| 301 | |
| 302 | class CollectionConfig: |
| 303 | def __init__(self, pair, name, config_a, config_b): |
| 304 | self.pair = pair |
| 305 | self._config = pair._config |
| 306 | self.name = name |
| 307 | self.config_a = config_a |
| 308 | self.config_b = config_b |
| 309 | |
| 310 | |
| 311 | #: Public API. Khal's config wizard depends on this function. |