Skip to content

Commit

Permalink
Remove categorization of SW balance transfers
Browse files Browse the repository at this point in the history
  • Loading branch information
Sha-yol committed Dec 3, 2024
1 parent 7c2043e commit 49725bc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion strategies/sw_balance.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ def create_transactions(self, exp: Expense, myshare: ExpenseUser, data: list[str
balance_txn = owed_txn.copy()
balance_txn.update({
'description': f"Balance transfer for: {description}",
'type': 'deposit' if balance > 0 else 'withdrawal'
'type': 'deposit' if balance > 0 else 'withdrawal',
'category_name': ''
})

if balance > 0: # I am owed; difference credited to balance account
Expand Down

0 comments on commit 49725bc

Please sign in to comment.