Skip to content

Commit

Permalink
Merge pull request #36 from knikolla/decimals_2
Browse files Browse the repository at this point in the history
Use 2 decimal points for Cost, rounding up
  • Loading branch information
knikolla authored May 1, 2024
2 parents 8ac8cca + 9f999e5 commit 2b04771
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion process_report/process_report.py
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ def merge_csv(files):
dataframes = []
for file in files:
dataframe = pandas.read_csv(
file, dtype={COST_FIELD: pandas.ArrowDtype(pyarrow.decimal128(12, 3))}
file, dtype={COST_FIELD: pandas.ArrowDtype(pyarrow.decimal128(12, 2))}
)
dataframes.append(dataframe)

Expand Down

0 comments on commit 2b04771

Please sign in to comment.