Skip to content

Commit

Permalink
fix fmt errors
Browse files Browse the repository at this point in the history
  • Loading branch information
subotic committed Sep 15, 2023
1 parent 0c6334b commit a6d8d14
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/dsp_meta/domain/value/iso_code.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
use crate::errors::DspMetaError;
use std::fmt::{Display, Formatter};

use crate::errors::DspMetaError;

/// Language codes according to ISO 639-1
/// Not an exhaustive list.
#[derive(Debug, Default, Clone, PartialEq, Eq, Hash)]
Expand Down
3 changes: 2 additions & 1 deletion src/dsp_meta/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@ pub mod domain;
pub mod errors;
pub mod operation;

use domain::entity::metadata::Metadata;
use std::path::Path;

use domain::entity::metadata::Metadata;

use crate::errors::DspMetaError;

pub fn load<P: AsRef<Path>>(path: P) -> Result<Metadata, DspMetaError> {
Expand Down

0 comments on commit a6d8d14

Please sign in to comment.