diff --git a/codex-rs/tui/src/clipboard_paste.rs b/codex-rs/tui/src/clipboard_paste.rs index c3d59201ce..365ad390c0 100644 --- a/codex-rs/tui/src/clipboard_paste.rs +++ b/codex-rs/tui/src/clipboard_paste.rs @@ -71,4 +71,3 @@ pub fn paste_image_to_temp_png() -> Result<(PathBuf, PastedImageInfo), PasteImag std::fs::write(&path, &png).map_err(|e| PasteImageError::IoError(e.to_string()))?; Ok((path, info)) } -