Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

1234567891011121314
  1. from pydantic import Field
  2. from configs.packaging.pyproject import PyProjectTomlConfig
  3. class PackagingInfo(PyProjectTomlConfig):
  4. """
  5. Packaging build information
  6. """
  7. COMMIT_SHA: str = Field(
  8. description="SHA-1 checksum of the git commit used to build the app",
  9. default="",
  10. )