Skip to content

Commit

Permalink
disable clippy warning in the example
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxVerevkin committed Mar 23, 2024
1 parent 0b0c000 commit 48d9363
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion example_keywallet/src/bin/service/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ fn default_handler(
enum ObjectType<'a> {
Collection(&'a str),
Item { col: &'a str, item: &'a str },
Session(&'a str),
Session(#[allow(dead_code)] &'a str),
}

fn get_object_type_and_id<'a>(path: &'a ObjectPath<&'a str>) -> Option<ObjectType<'a>> {
Expand Down

0 comments on commit 48d9363

Please sign in to comment.