Result of manifest validation and type detection.
| 96 | |
| 97 | @dataclass |
| 98 | class ManifestResult: |
| 99 | """Result of manifest validation and type detection.""" |
| 100 | |
| 101 | is_valid: bool |
| 102 | manifest_path: Optional[Path] |
| 103 | is_framework: bool |
| 104 | |
| 105 | |
| 106 | def _get_remote_file_size(url: str) -> Optional[int]: |
no outgoing calls
no test coverage detected