Skip to content

Commit 9086487

Browse files
committed
chore: make format
Signed-off-by: Luka Peschke <luka.peschke@toucantoco.com>
1 parent 6f4acfc commit 9086487

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/types/dtype.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ fn get_cell_dtype<DT: CellType + Debug + DataType>(
182182
) -> FastExcelResult<DType> {
183183
let cell = data
184184
.get((row, col))
185-
.ok_or_else(|| FastExcelErrorKind::CannotRetrieveCellData(row, col))?;
185+
.ok_or(FastExcelErrorKind::CannotRetrieveCellData(row, col))?;
186186

187187
if cell.is_int() {
188188
Ok(DType::Int)

0 commit comments

Comments
 (0)