diff --git a/content/GA_1_4/functions.py b/content/GA_1_4/functions.py
index d6d8e434be7c62a827fe7f32b41d670905e0dde4..8dbb9553f9f156740efab3e43f6471067025c0e7 100644
--- a/content/GA_1_4/functions.py
+++ b/content/GA_1_4/functions.py
@@ -212,8 +212,7 @@ def model_summary(d):
         print(f'    X_hat_{i} = {d["X_hat"][i]:8.3f}'
               + f'  +/- {np.sqrt(d["Sigma_X_hat"][i,i]):6.3f}'
               + f'  (c.o.v. '
-              + f'{(np.sqrt(d["Sigma_X_hat"][i,i])
-                    /d["X_hat"][i]):6.3f})')
+              + f'{(np.sqrt(d["Sigma_X_hat"][i,i])/d["X_hat"][i]):6.3f})')
     print('----------------\n')
 
 def load_pickle_file(filename):