Parcourir la source

fix to re_read param in CRF reading routines

Johannes Gütschow il y a 2 ans
Parent
commit
d6462b2210
1 fichiers modifiés avec 3 ajouts et 3 suppressions
  1. 3 3
      dodo.py

+ 3 - 3
dodo.py

@@ -180,15 +180,15 @@ read_config_crf = {
 }
 
 def task_read_unfccc_crf_submission():
-    """ Read CRF submission for a country (will re-read if data already present)"""
-    actions =  [
+    """ Read CRF submission for a country """
+    actions = [
         f"./venv/bin/python code/UNFCCC_CRF_reader/read_UNFCCC_CRF_submission_datalad.py "
         f"--country={read_config_crf['country']} "
         f"--submission_year={read_config_crf['submission_year']} "
         f"--submission_date={read_config_crf['submission_date']} ",
         f"./venv/bin/python code/UNFCCC_reader/folder_mapping.py "
         f"--folder=extracted_data/UNFCCC"
-        ],
+        ]
     if read_config_crf["re_read"]:
         actions[0] = actions[0] + " --re_read"
     return {