diff --git a/src/patch/offset.rs b/src/patch/offset.rs index 3cbe0521..1d9ecf3f 100644 --- a/src/patch/offset.rs +++ b/src/patch/offset.rs @@ -38,7 +38,6 @@ impl FromStr for PatchOffsets { type Err = Error; fn from_str(s: &str) -> Result { - use winnow::Parser; super::parse::patch_offsets .parse(s) .map_err(|_| Error::InvalidPatchOffsets(s.to_string()))