8 lines
195 B
Python
8 lines
195 B
Python
|
|
|
|
def default_aging_buckets():
|
|
"""
|
|
Return the list of aging buckets for reporting.
|
|
This top-level function can be serialized by Django migrations.
|
|
"""
|
|
return [30, 60, 90, 120] |