diff --git a/financial/present_value.py b/financial/present_value.py index f74612b923af..d4700401df35 100644 --- a/financial/present_value.py +++ b/financial/present_value.py @@ -8,6 +8,8 @@ Note: This algorithm assumes that cash flows are paid at the end of the specified year """ +# adding a comment + def present_value(discount_rate: float, cash_flows: list[float]) -> float: """