Changeset - 9ae36feed2f8
[Not reviewed]
0 1 0
Ben Sturmfels (bsturmfels) - 2 years ago 2022-02-24 10:11:02
ben@sturm.com.au
reconciler: Remove debug warning.
1 file changed with 5 insertions and 5 deletions:
0 comments (0 inline, 0 general)
conservancy_beancount/reconcile/statement_reconciler.py
Show inline comments
...
 
@@ -131,2 +131,7 @@ def read_transactions_from_csv(f: TextIO, standardize_statement_record: Callable
 

	
 
# Does the account you entered match the CSV?
 
# Is the CSV in the format we expect? (ie. did they download through the right interface?)
 
# Logical CSV line numbers
 
# CSV reconciliation report
 
# Merge helper script.
 

	
...
 
@@ -253,4 +258,2 @@ def match_statement_and_books(statement_trans: list, books_trans: list):
 
    """
 

	
 

	
 
    Runs through all the statement transactions to find a matching transaction
...
 
@@ -259,3 +262,2 @@ def match_statement_and_books(statement_trans: list, books_trans: list):
 
    statement but not the books and some on the books but not the statement.
 

	
 
    """
...
 
@@ -278,4 +280,2 @@ def match_statement_and_books(statement_trans: list, books_trans: list):
 
        if best_match_score > 0.5 and matches_found == 1 and 'check-id mismatch' not in best_match_note or best_match_score > 0.8:
 
            if best_match_score <= 0.8:
 
                best_match_note.append('only one decent match')
 
            matches.append(([r1], [books_trans[best_match_index]], best_match_note))
0 comments (0 inline, 0 general)