Skip to content

Commit

Permalink
Merge pull request #1720 from mirpedrol/moduleinfo
Browse files Browse the repository at this point in the history
add base_path to ModuleInfo init method
  • Loading branch information
mirpedrol authored Aug 2, 2022
2 parents 92211f3 + 625ad23 commit 53c9dc7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nf_core/modules/info.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,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
Expand Down

0 comments on commit 53c9dc7

Please sign in to comment.