Skip to content

Commit

Permalink
Fixed linting
Browse files Browse the repository at this point in the history
  • Loading branch information
GallVp committed Jul 30, 2024
1 parent 423af01 commit c18d9cd
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion nf_core/modules/lint/main_nf.py
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,14 @@ def check_process_section(self, lines, registry, fix_version, progress_bar):


def check_process_labels(self, lines):
correct_process_labels = ["process_single", "process_low", "process_medium", "process_high", "process_long", "process_high_memory"]
correct_process_labels = [
"process_single",
"process_low",
"process_medium",
"process_high",
"process_long",
"process_high_memory",
]
all_labels = [line.strip() for line in lines if line.lstrip().startswith("label ")]
bad_labels = []
good_labels = []
Expand Down

0 comments on commit c18d9cd

Please sign in to comment.