From bc1de5b0669325ba8dcd8a4844373fe4acc302b6 Mon Sep 17 00:00:00 2001 From: Alessandro Candido Date: Tue, 16 Apr 2024 14:18:44 +0200 Subject: [PATCH] fix: Add forgotten unwrap --- pineappl_py/src/fk_table.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pineappl_py/src/fk_table.rs b/pineappl_py/src/fk_table.rs index 40eb5983..f561b535 100644 --- a/pineappl_py/src/fk_table.rs +++ b/pineappl_py/src/fk_table.rs @@ -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(), } }