Skip to content

Commit 7733a3d

Browse files
committed
Fix
1 parent 0e8e7d0 commit 7733a3d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

nf_core/pipelines/lint/__init__.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -600,8 +600,9 @@ def run_linting(
600600
lint_obj.load_pipeline_config()
601601

602602
if (
603-
lint_obj.lint_config and
604-
lint_obj.lint_config.get("nfcore_components")
603+
lint_obj.lint_config and
604+
lint_obj.lint_config.get("nfcore_components") is not None and
605+
not lint_obj.lint_config["nfcore_components"]
605606
):
606607
module_lint_obj = None
607608
subworkflow_lint_obj = None

0 commit comments

Comments
 (0)