Skip to content

Commit

Permalink
clippy changes
Browse files Browse the repository at this point in the history
  • Loading branch information
gianfra-t committed Sep 18, 2023
1 parent 9d42516 commit 3180bb6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions clients/runner/src/runner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ use std::{
convert::TryInto,
fmt::{Debug, Display},
fs::{self, OpenOptions},
io::{Read, Seek, SeekFrom, Write},
io::{Read, Seek, Write},
os::unix::prelude::OpenOptionsExt,
path::PathBuf,
process::{Child, Command, Stdio},
Expand Down Expand Up @@ -195,7 +195,7 @@ impl Runner {
file.sync_all()?;

//checksum check
file.seek(SeekFrom::Start(0))?;
file.rewind()?;

// Read the content of the file
let mut file_content = Vec::new();
Expand Down

0 comments on commit 3180bb6

Please sign in to comment.