Parse the terraform.tfvars config file.
(self)
| 27 | class Manager: |
| 28 | """BinaryAlert management utility.""" |
| 29 | def __init__(self) -> None: |
| 30 | """Parse the terraform.tfvars config file.""" |
| 31 | self._config = BinaryAlertConfig() |
| 32 | |
| 33 | @property |
| 34 | def commands(self) -> Set[str]: |
nothing calls this directly
no test coverage detected