Remove unused error variant (#5266)

This commit is contained in:
Charlie Marsh 2024-07-21 19:38:45 -04:00 committed by GitHub
parent 12518a01a4
commit 5c3d55afa8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 0 additions and 7 deletions

View file

@ -173,10 +173,6 @@ pub enum ErrorKind {
#[source] Box<pypi_types::MetadataError>,
),
/// The metadata file was not found in the wheel.
#[error("Metadata file `{0}` was not found in {1}")]
MetadataNotFound(WheelFilename, String),
/// An error that happened while making a request or in a reqwest middleware.
#[error(transparent)]
WrappedReqwestError(#[from] WrappedReqwestError),