Skip to content

Commit

Permalink
Merge pull request #1129 from ErikDanielsson/add-parens
Browse files Browse the repository at this point in the history
Add missing parens
  • Loading branch information
ErikDanielsson authored Jun 24, 2021
2 parents c196325 + 49fe897 commit 75a6852
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions nf_core/modules/lint/module_changes.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,11 @@ def module_changes(module_lint_object, module):

if r.status_code != 200:
module.warned.append(
"check_local_copy",
f"Could not fetch remote copy, skipping comparison.",
f"{os.path.join(module.module_dir, f)}",
(
"check_local_copy",
f"Could not fetch remote copy, skipping comparison.",
f"{os.path.join(module.module_dir, f)}",
)
)
else:
try:
Expand Down

0 comments on commit 75a6852

Please sign in to comment.