Skip to content

Commit

Permalink
remove print statement from code
Browse files Browse the repository at this point in the history
  • Loading branch information
ksagar8848 committed Jan 21, 2025
1 parent f12a1a4 commit 9ba60d8
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5292,7 +5292,6 @@ def check_gl_entries(doc, voucher_no, expected_gle, posting_date, voucher_type="
.orderby(gl.posting_date, gl.account, gl.creation)
)
gl_entries = q.run(as_dict=True)
print(gl_entries)
expected_gle = sorted(expected_gle, key=lambda x: x[0])
gl_entries = sorted(gl_entries, key=lambda x: x['account'])

Expand Down

0 comments on commit 9ba60d8

Please sign in to comment.