Skip to content

Commit 70f7555

Browse files
committed
Fix test
1 parent da76c90 commit 70f7555

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

nf_core/pipelines/lint/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -601,8 +601,8 @@ def run_linting(
601601

602602
if (
603603
lint_obj.lint_config and (
604-
not lint_obj.lint_config["nfcore_components"]
605-
or lint_obj.lint_config["nfcore_components"] is not None
604+
not lint_obj.lint_config["nfcore_components"] or
605+
lint_obj.lint_config["nfcore_components"] is None
606606
)
607607
):
608608
module_lint_obj = None

0 commit comments

Comments
 (0)