(manifest, platform)
| 256 | return platform in manifest_platforms |
| 257 | |
| 258 | def validate_manifest_platform(manifest, platform): |
| 259 | if not is_valid_manifest_platform(manifest, platform): |
| 260 | exit_with_error(f"Platform {platform} is not available in the manifest.") |
| 261 | |
| 262 | def get_manifest_target_platforms(manifest, requested_platform): |
| 263 | if requested_platform == "" or requested_platform is None: |
no test coverage detected