Skip to content

Commit

Permalink
fix: Add forgotten unwrap
Browse files Browse the repository at this point in the history
  • Loading branch information
alecandido committed Apr 16, 2024
1 parent 8f036e5 commit 4c67a2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pineappl_py/src/fk_table.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ impl PyFkTable {
#[new]
pub fn new(grid: PyGrid) -> Self {
Self {
fk_table: FkTable::try_from(grid.grid),
fk_table: FkTable::try_from(grid.grid).unwrap(),
}
}

Expand Down

0 comments on commit 4c67a2c

Please sign in to comment.