Coverage for polar/benefit/strategies/__init__.py: 100%
8 statements
« prev ^ index » next coverage.py v7.10.6, created at 2025-12-05 15:52 +0000
« prev ^ index » next coverage.py v7.10.6, created at 2025-12-05 15:52 +0000
1from .base import ( 1a
2 BenefitActionRequiredError,
3 BenefitProperties,
4 BenefitPropertiesValidationError,
5 BenefitRetriableError,
6 BenefitServiceError,
7 BenefitServiceProtocol,
8)
9from .custom.properties import BenefitGrantCustomProperties 1a
10from .discord.properties import BenefitGrantDiscordProperties 1a
11from .downloadables.properties import BenefitGrantDownloadablesProperties 1a
12from .github_repository.properties import BenefitGrantGitHubRepositoryProperties 1a
13from .license_keys.properties import BenefitGrantLicenseKeysProperties 1a
15BenefitGrantProperties = ( 1a
16 BenefitGrantDiscordProperties
17 | BenefitGrantGitHubRepositoryProperties
18 | BenefitGrantDownloadablesProperties
19 | BenefitGrantLicenseKeysProperties
20 | BenefitGrantCustomProperties
21)
23__all__ = [ 1a
24 "BenefitProperties",
25 "BenefitActionRequiredError",
26 "BenefitServiceProtocol",
27 "BenefitPropertiesValidationError",
28 "BenefitRetriableError",
29 "BenefitServiceError",
30 "BenefitGrantProperties",
31]