Skip to content

Commit

Permalink
fix: fidelity rounding errors are frequently higher than current value
Browse files Browse the repository at this point in the history
  • Loading branch information
redstreet committed Jan 20, 2023
1 parent 924594d commit c657aca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion beancount_reds_importers/fidelity/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class Importer(investments.Importer, ofxreader.Importer):
IMPORTER_NAME = 'Fidelity Net Benefits / Fidelity Investments OFX'

def custom_init(self):
self.max_rounding_error = 0.14
self.max_rounding_error = 0.18
self.filename_pattern_def = '.*fidelity'
self.get_ticker_info = self.get_ticker_info_from_id
self.get_payee = lambda ot: ot.memo.split(";", 1)[0] if ';' in ot.memo else ot.memo
Expand Down

0 comments on commit c657aca

Please sign in to comment.