Added skeleton function for computing MRE from target DTI and consumer income

This commit is contained in:
Chris Diesch 2025-04-10 20:08:13 -06:00
parent f07e0a086a
commit 2e1e9418db

View File

@ -112,6 +112,11 @@ def compute_mre(home_value: float,
return mre
def compute_from_target_dti(consumer_income: float,
home_price: float,
comsumer_fico: int,
target_dti: float) -> float:
return None
#if __name__ == '__main__':