From 0220c96e379ecff1dd45c4a5b3a37de747fad7bf Mon Sep 17 00:00:00 2001
From: Lionel GUEZ <guez@lmd.ens.fr>
Date: Thu, 2 Sep 2021 18:08:25 +0200
Subject: [PATCH] Polish

---
 Convert_Matlab/inst_eddies_v6.py | 5 +++--
 Overlap/report_graph.py          | 2 +-
 2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/Convert_Matlab/inst_eddies_v6.py b/Convert_Matlab/inst_eddies_v6.py
index b664723b..dca6b4fa 100755
--- a/Convert_Matlab/inst_eddies_v6.py
+++ b/Convert_Matlab/inst_eddies_v6.py
@@ -5,7 +5,8 @@ SHPC_anti and SHPC_cyclo. The mat files are assumed to be in v7.3
 (HDF5) format and will be converted to v6 format before being read in
 Python. The data in each input file is the set of detected
 instantaneous eddies at a given date. The second, optional argument,
-is the final date processed.
+is the final date processed. The script inst_eddies.m must be in the
+current directory at run-time.
 
 """
 
@@ -226,4 +227,4 @@ for factory in factories:
         else:
             f.write("anticyclones\n")
             
-    for k, v in factory["writers"].items(): v.close()
+    for key, v in factory["writers"].items(): v.close()
diff --git a/Overlap/report_graph.py b/Overlap/report_graph.py
index e77a5530..c8e695b6 100755
--- a/Overlap/report_graph.py
+++ b/Overlap/report_graph.py
@@ -27,7 +27,7 @@ def date_eddy_to_node(d, eddy_index, e_overestim, d_init):
     identification in graph.
 
     """
-    return (d- d_init) * e_overestim + eddy_index
+    return (d - d_init) * e_overestim + eddy_index
 
 def read_eddy_graph(edgelist, shpc_dir = None):
     if os.access(edgelist, os.R_OK):
-- 
GitLab