Skip to content

Commit

Permalink
Fix one clippy warning
Browse files Browse the repository at this point in the history
  • Loading branch information
cschwan committed Sep 1, 2024
1 parent a1365f2 commit 2b21919
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pineappl/src/v0.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use pineappl_v0::grid::Grid as GridV0;
use std::io::BufRead;
use std::iter;

pub(crate) fn read_uncompressed_v0(mut reader: impl BufRead) -> Result<Grid, GridError> {
pub fn read_uncompressed_v0(mut reader: impl BufRead) -> Result<Grid, GridError> {
use pineappl_v0::subgrid::Subgrid as _;

let grid = GridV0::read(&mut reader).map_err(|err| GridError::Other(err.into()))?;
Expand Down

0 comments on commit 2b21919

Please sign in to comment.