Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
Piotr Czajka committed Sep 17, 2023
1 parent d04dc83 commit 9b98fe6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/errors.rs
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
//! Exported errors if library users wish to handle certain failure cases
use std::fmt;
use std::error;
use std::fmt;

#[derive(Debug)]
pub enum BrowsercookieError {
ProfileMissing(String),
InvalidProfile(String),
InvalidCookieStore(String),
InvalidRecovery(String)
InvalidRecovery(String),
}

impl fmt::Display for BrowsercookieError {
Expand Down

0 comments on commit 9b98fe6

Please sign in to comment.