Buckets:
| from __future__ import annotations | |
| from typing import TYPE_CHECKING | |
| from .base import ActionValidationBase, ValidationException | |
| if TYPE_CHECKING: | |
| from ..repositories.base import HacsRepository | |
| async def async_setup_validator(repository: HacsRepository) -> Validator: | |
| """Set up this validator.""" | |
| return Validator(repository=repository) | |
| class Validator(ActionValidationBase): | |
| """Validate the repository.""" | |
| more_info = "https://hacs.xyz/docs/publish/include#check-archived" | |
| allow_fork = False | |
| async def async_validate(self) -> None: | |
| """Validate the repository.""" | |
| if self.repository.data.archived: | |
| raise ValidationException("The repository is archived") | |
Xet Storage Details
- Size:
- 718 Bytes
- Xet hash:
- 60394e95757637f84ecab20dfb2b2fb48da5944371d76581ba91802807949455
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.