Merge pull request #373

fix(rules:dry-run): Edit/Update transaction not showing message when transaction can't be found
This commit is contained in:
Herculino Trotta
2025-09-14 00:41:28 -03:00
committed by GitHub

View File

@@ -95,9 +95,9 @@ class DryRunResults:
return
if isinstance(end_instance, Transaction):
start_instance = end_instance.deepcopy()
end_instance = end_instance.deepcopy()
elif isinstance(end_instance, dict):
start_instance = deepcopy(end_instance)
end_instance = deepcopy(end_instance)
result = {
"type": "update_or_create_transaction",