There's a hardcoded 1970 value in core/base.py:
|
if ( |
|
pd.Series(development_date).dt.year.min() |
|
== pd.Series(development_date).dt.year.max() |
|
== 1970 |
I'm not sure what this is for, the meaning should become clear after this file goes through the annotation process. In any case, we've been moving values like this to the package __init__.py (from which I'd propose a distinct options module be spun-off eventually) to centralize the constants.
There's a hardcoded
1970value incore/base.py:chainladder-python/chainladder/core/base.py
Lines 142 to 145 in 6c9ce99
I'm not sure what this is for, the meaning should become clear after this file goes through the annotation process. In any case, we've been moving values like this to the package
__init__.py(from which I'd propose a distinct options module be spun-off eventually) to centralize the constants.