Warn if key is missing and return True if key exists
(cls, service: str)
| 48 | |
| 49 | @classmethod |
| 50 | def warn_if_missing(cls, service: str) -> bool: |
| 51 | """Warn if key is missing and return True if key exists""" |
| 52 | return cls.check_key(service) is not None |
| 53 | |
| 54 | @classmethod |
| 55 | def get_available_services(cls) -> List[str]: |