diff --git a/DIRECTORY.md b/DIRECTORY.md
index 681d252b232d..167d062b4a9f 100644
--- a/DIRECTORY.md
+++ b/DIRECTORY.md
@@ -363,6 +363,7 @@
 ## Financial
   * [Equated Monthly Installments](financial/equated_monthly_installments.py)
   * [Interest](financial/interest.py)
+  * [Present Value](financial/present_value.py)
   * [Price Plus Tax](financial/price_plus_tax.py)
 
 ## Fractals
@@ -655,6 +656,7 @@
   * [Sum Of Harmonic Series](maths/sum_of_harmonic_series.py)
   * [Sumset](maths/sumset.py)
   * [Sylvester Sequence](maths/sylvester_sequence.py)
+  * [Tanh](maths/tanh.py)
   * [Test Prime Check](maths/test_prime_check.py)
   * [Trapezoidal Rule](maths/trapezoidal_rule.py)
   * [Triplet Sum](maths/triplet_sum.py)
diff --git a/financial/present_value.py b/financial/present_value.py
index dc8191a6ef53..f74612b923af 100644
--- a/financial/present_value.py
+++ b/financial/present_value.py
@@ -6,6 +6,7 @@
 2. An array of cash flows, with the index of the cash flow being the associated year
 
 Note: This algorithm assumes that cash flows are paid at the end of the specified year
+"""
 
 
 def present_value(discount_rate: float, cash_flows: list[float]) -> float: