Compare commits

...

2 Commits

Author SHA1 Message Date
Chris Diesch
5feee5408c Consistent punctuation 2025-04-23 15:25:50 -06:00
Chris Diesch
dda93b929d Typo fix 2025-04-23 15:24:34 -06:00

View File

@ -13,15 +13,15 @@ MRE_request_parser = RequestParser()
MRE_request_parser.add_argument('consumer_fico',
required=True,
type=int,
help='The consumer\'s fico score (int between [300, 850])')
help='The consumer\'s fico score (int between [300, 850]).')
MRE_request_parser.add_argument('home_price',
required=True,
type=float,
help='The price of the home the consumer wants to buy (float)')
help='The price of the home the consumer wants to buy (float).')
MRE_request_parser.add_argument('down_payment',
required=True,
type=float,
help='The down payment (as a percentage) for purchasing the home (float between [0, 1]).)
help='The down payment (as a percentage) for purchasing the home (float between [0, 1]).')
@namespace.route('/from_down_payment')
@namespace.doc(params={