fix: remove non_exhaustive from error enum

This commit is contained in:
ThetaDev 2023-11-18 12:15:57 +01:00
parent 1c366a9071
commit 09f3264a64

View file

@ -4,7 +4,6 @@ pub(crate) type Result<T> = core::result::Result<T, Error>;
/// Custom error type for the Bandcamp client
#[derive(thiserror::Error, Debug)]
#[non_exhaustive]
pub enum Error {
/// Error from the HTTP client
#[error("http error: {0}")]