From 888bed22cb7425cf351f89ec84ac597ed6d9390b Mon Sep 17 00:00:00 2001 From: mirpedrol Date: Tue, 2 Aug 2022 15:26:15 +0200 Subject: [PATCH] add base_path to ModuleInfo init method --- nf_core/modules/info.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nf_core/modules/info.py b/nf_core/modules/info.py index 3a374e72fd..9527e2b160 100644 --- a/nf_core/modules/info.py +++ b/nf_core/modules/info.py @@ -21,8 +21,8 @@ class ModuleInfo(ModuleCommand): - def __init__(self, pipeline_dir, tool, remote_url, branch, no_pull): - super().__init__(pipeline_dir, remote_url, branch, no_pull) + def __init__(self, pipeline_dir, tool, remote_url, branch, no_pull, base_path): + super().__init__(pipeline_dir, remote_url, branch, no_pull, base_path) self.meta = None self.local_path = None self.remote_location = None