Skip to content

Commit

Permalink
chore: Linting Issue
Browse files Browse the repository at this point in the history
  • Loading branch information
deepeshgarg007 committed Jul 14, 2023
1 parent e528fd8 commit fed2533
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion erpnext/accounts/report/financial_statements.py
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ def set_gl_entries_by_account(
filters,
gl_entries_by_account,
ignore_closing_entries=False,
ignore_opening_entries=False
ignore_opening_entries=False,
):
"""Returns a dict like { "account": [gl entries], ... }"""
gl_entries = []
Expand Down
2 changes: 1 addition & 1 deletion erpnext/accounts/report/trial_balance/trial_balance.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def get_data(filters):
filters,
gl_entries_by_account,
ignore_closing_entries=not flt(filters.with_period_closing_entry),
ignore_opening_entries=True
ignore_opening_entries=True,
)

calculate_values(accounts, gl_entries_by_account, opening_balances)
Expand Down

0 comments on commit fed2533

Please sign in to comment.