Skip to content

Commit

Permalink
refactor(writer/xlsx): remove unnecessary qualification
Browse files Browse the repository at this point in the history
  • Loading branch information
mxsrm committed Dec 22, 2024
1 parent 37d1139 commit 505d766
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/writer/xlsx.rs
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ fn make_buffer(spreadsheet: &Spreadsheet, is_light: bool) -> Result<Vec<u8>, Xls
workbook_rels::write(spreadsheet, has_shared_string_table, &mut writer_manager)?;
content_types::write(spreadsheet, &mut writer_manager)?;

arv.finish().map(std::io::Cursor::into_inner).map_err(Into::into)
arv.finish().map(io::Cursor::into_inner).map_err(Into::into)
}

/// write spreadsheet file to arbitrary writer.
Expand Down

0 comments on commit 505d766

Please sign in to comment.