Skip to content

Commit

Permalink
[automated] Fix linting with Prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
nf-core-bot committed Aug 19, 2022
1 parent ede834a commit 1e6513d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion nf_core/modules/modules_repo.py
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,9 @@ def verify_branch(self):
if "modules" not in dir_names:
err_str = f"Repository '{self.fullname}' ({self.branch}) does not contain the 'modules/' directory"
if "software" in dir_names:
err_str += ".\nAs of nf-core/tools version 2.0, the 'software/' directory should be renamed to 'modules/'"
err_str += (
".\nAs of nf-core/tools version 2.0, the 'software/' directory should be renamed to 'modules/'"
)
raise LookupError(err_str)

def checkout_branch(self):
Expand Down

0 comments on commit 1e6513d

Please sign in to comment.