(self, config_path)
| 34 | |
| 35 | class MaasManager: |
| 36 | def __init__(self, config_path): |
| 37 | self.config_path = config_path |
| 38 | self.data = self.parse_json() |
| 39 | self.session = self.init_session() |
| 40 | |
| 41 | def parse_json(self): |
| 42 | try: |
nothing calls this directly
no test coverage detected