fix: remove debug flag from sql

This commit is contained in:
Gursheen Anand 2023-06-27 21:59:35 +05:30
parent 5d726ef037
commit 6b9f9f9b0e

View File

@ -49,7 +49,7 @@ def get_data(filters):
.groupby(gle.voucher_no)
)
query = apply_filters(query, filters, gle)
gl_entries = query.run(as_dict=True, debug=True)
gl_entries = query.run(as_dict=True)
unmatched = [entry for entry in gl_entries if entry.debit != entry.credit]
return unmatched