Skip to content

Commit

Permalink
chore: make format
Browse files Browse the repository at this point in the history
Signed-off-by: Luka Peschke <[email protected]>
  • Loading branch information
lukapeschke committed Jan 13, 2025
1 parent 6f4acfc commit 9086487
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/types/dtype.rs
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ fn get_cell_dtype<DT: CellType + Debug + DataType>(
) -> FastExcelResult<DType> {
let cell = data
.get((row, col))
.ok_or_else(|| FastExcelErrorKind::CannotRetrieveCellData(row, col))?;
.ok_or(FastExcelErrorKind::CannotRetrieveCellData(row, col))?;

if cell.is_int() {
Ok(DType::Int)
Expand Down

0 comments on commit 9086487

Please sign in to comment.