From ea09cb2e8313e1b0f37f1225cd0150ac99004acf Mon Sep 17 00:00:00 2001 From: Loraine Gueguen <loraine.gueguen@sb-roscoff.fr> Date: Sun, 16 May 2021 15:03:38 +0200 Subject: [PATCH] fix constructor for LoadData Class --- gga_load_data.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gga_load_data.py b/gga_load_data.py index 6716c3a..f637fbc 100755 --- a/gga_load_data.py +++ b/gga_load_data.py @@ -35,10 +35,10 @@ class LoadData(speciesData.SpeciesData): Optional data file formatting """ - def __init__(self): + def __init__(self, parameters_dictionary): self.existing_folders_cache = {} self.bam_metadata_cache = {} - super().__init__(self) + super().__init__(parameters_dictionary) def get_history(self): """ -- GitLab