chore: fix all the obvious clippy warnings (#1520)

This commit is contained in:
tomarST
2023-02-26 05:10:52 -03:30
committed by GitHub
parent b1741bd86b
commit 662fd87288
4 changed files with 14 additions and 19 deletions

View File

@ -147,7 +147,7 @@ where
crsr.append(k, v).expect("submit");
}
tx.inner.commit().unwrap();
tx.inner.commit().unwrap()
});
},
)
@ -171,7 +171,7 @@ where
crsr.insert(k, v).expect("submit");
}
tx.inner.commit().unwrap();
tx.inner.commit().unwrap()
});
},
)
@ -241,7 +241,7 @@ where
crsr.append_dup(k, v).expect("submit");
}
tx.inner.commit().unwrap();
tx.inner.commit().unwrap()
});
},
)