Skip to content

Commit

Permalink
chore: remove unused import
Browse files Browse the repository at this point in the history
Previously, `cargo check --all-targets` reported this import as unused.
Since it's just `const u16`, the import is probably side-effect free and
indeed safe to remove.
  • Loading branch information
sethp committed Mar 1, 2023
1 parent c183dfa commit f0ab4dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion espflash/src/targets/flash_target/esp32.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use flate2::{
use super::FlashTarget;
use crate::{
command::{Command, CommandType},
connection::{Connection, USB_SERIAL_JTAG_PID},
connection::Connection,
elf::RomSegment,
error::Error,
flasher::{ProgressCallbacks, SpiAttachParams, FLASH_SECTOR_SIZE},
Expand Down

0 comments on commit f0ab4dd

Please sign in to comment.