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-repository" | |
| allow_fork = False | |
| async def async_validate(self) -> None: | |
| """Validate the repository.""" | |
| if not self.repository.data.description: | |
| raise ValidationException("The repository has no description") | |
Xet Storage Details
- Size:
- 734 Bytes
- Xet hash:
- d1b5aa66903bb5dcce80ef4db3a23cf7742fc02d9cd4c702827bd04d438cbc53
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.