chore: address Rust 1.76 clippy lints (#3605)

This commit is contained in:
Chethan Rao
2024-02-12 12:36:22 +05:30
committed by GitHub
parent d3fb705ed2
commit c55eb0afca
7 changed files with 34 additions and 23 deletions

View File

@ -56,7 +56,6 @@ where
// Open the file in write mode or create it if it doesn't exist
let mut file = std::fs::OpenOptions::new()
.write(true)
.append(true)
.create(true)
.open(file_path)?;