Skip to content

Commit

Permalink
Fix linter.
Browse files Browse the repository at this point in the history
  • Loading branch information
tomusdrw committed May 31, 2023
1 parent 3944485 commit c99bff3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ jobs:
uses: actions-rs/cargo@master
with:
command: fmt
args: --all -- --check --config merge_imports=true
args: --all -- --check --config imports_granularity="Crate"
7 changes: 4 additions & 3 deletions src/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@

use crate::ec;

pub use crate::crypto::error::ScryptError;
pub use crate::crypto::Error as EthsignCryptoError;
pub use crate::ec::Error as Secp256k1Error;
pub use crate::{
crypto::{error::ScryptError, Error as EthsignCryptoError},
ec::Error as Secp256k1Error,
};

/// Key error
#[derive(Debug)]
Expand Down

0 comments on commit c99bff3

Please sign in to comment.