Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian Phillips committed Jul 29, 2022
1 parent 915c9d4 commit 0067761
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arrow/src/array/builder/decimal_builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ impl Decimal128Builder {
None => {
self.append_null();
Ok(())
},
}
Some(value) => self.append_value(value),
}
}
Expand Down Expand Up @@ -238,7 +238,7 @@ impl Decimal256Builder {
None => {
self.append_null();
Ok(())
},
}
Some(value) => self.append_value(value),
}
}
Expand Down

0 comments on commit 0067761

Please sign in to comment.