Skip to content

Commit dc53b5d

Browse files
committed
- **Updated typing imports in roles.py:**
- Re-ordered and ensured proper import layout for `List`, `Set`, and `Union` from `typing`. - **Added `ASSET_CA_CASH` to `GROUP_DEBT_PAYMENT`:** - Included `ASSET_CA_CASH` as a new element in the `GROUP_DEBT_PAYMENT` list to expand its scope. ### **Summary** Optimized import definitions for better readability and expanded `GROUP_DEBT_PAYMENT` to include `ASSET_CA_CASH`. No backwards compatibility concerns.
1 parent ad16691 commit dc53b5d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

django_ledger/io/roles.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
import sys
1010
from itertools import chain
11-
from typing import Set, List, Union
11+
from typing import List, Set, Union
1212

1313
from django.utils.translation import gettext as _
1414

@@ -201,6 +201,7 @@
201201
]
202202

203203
GROUP_DEBT_PAYMENT = [
204+
ASSET_CA_CASH,
204205
LIABILITY_CL_CREDIT_LINE,
205206
LIABILITY_LTL_NOTES_PAYABLE,
206207
LIABILITY_LTL_MORTGAGE_PAYABLE,

0 commit comments

Comments
 (0)