From 75074dd05fe397be3d228530bd410c71bd410df3 Mon Sep 17 00:00:00 2001 From: Loraine Gueguen <loraine.gueguen@sb-roscoff.fr> Date: Sun, 16 May 2021 15:01:51 +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 1bb7a36..6716c3a 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, parameters_dictionary): + def __init__(self): self.existing_folders_cache = {} self.bam_metadata_cache = {} - super().__init__(self, parameters_dictionary) + super().__init__(self) def get_history(self): """ -- GitLab