raphaelm / python-sepaxml

SEPA Direct Debit XML generation in python
MIT License
110 stars 41 forks source link

Fix #23 -- Correct int to decimal string conversion #24

Closed debruinf closed 4 years ago

debruinf commented 4 years ago

Currently, amounts with two digits are incorrectly converted, resulting in amounts missing the leading '0'. This PR fixes that.

codecov[bot] commented 4 years ago

Codecov Report

Merging #24 into master will not change coverage. The diff coverage is 100%.

Impacted file tree graph

@@          Coverage Diff           @@
##           master     #24   +/-   ##
======================================
  Coverage    97.3%   97.3%           
======================================
  Files          22      22           
  Lines         854     854           
======================================
  Hits          831     831           
  Misses         23      23
Impacted Files Coverage Δ
sepaxml/utils.py 80% <100%> (ø) :arrow_up:

Continue to review full report at Codecov.

Legend - Click here to learn more Δ = absolute <relative> (impact), ø = not affected, ? = missing data Powered by Codecov. Last update 2f319e2...2e8974f. Read the comment docs.

raphaelm commented 4 years ago

Thanks a lot!