Add skeleton function to the controller. Add pytest to requirements.txt

This commit is contained in:
Chris Diesch 2025-03-28 16:15:41 -06:00
parent 96364f4cd7
commit b5004f0a4c
2 changed files with 4 additions and 0 deletions

View File

@ -14,6 +14,9 @@ TODO: Implement this.
def compute_tic_fee(home_price: float) -> float:
return None
'''
TODO: Implement this
'''
def compute_max_tic_fee(consumer_income: float,
consumer_fico: int) -> float:
return None

View File

@ -3,3 +3,4 @@ flask-restx==1.3.0
pyopenssl==25.0.0
werkzeug==3.1.3
jinja2==3.1.6
pytest==8.3.5