(self)
| 45 | GET_USER_SECRET_BY_LABEL_ENDPOINT = '/requests/GetUserSecretByLabelRequest' |
| 46 | |
| 47 | def __init__(self): |
| 48 | self.web_client = KaggleWebClient() |
| 49 | |
| 50 | def get_secret(self, label) -> str: |
| 51 | """Retrieves a user secret value by its label. |
nothing calls this directly
no test coverage detected