Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
subagonsouth committed Sep 16, 2024
2 parents 0ee0d32 + bfea5de commit cdb8829
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions imap_processing/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,10 +147,10 @@ def make_metakernel_from_kernels(metakernel, kernels):
# Put single quotes around every kernel name
kernels_with_quotes = [" '" + kern + "'" for kern in kernels]
# Add a comma and EOL to the end of each kernel path except the last.
formated_kernels = [kern + ",\n" for kern in kernels_with_quotes[0:-1]]
formatted_kernels = [kern + ",\n" for kern in kernels_with_quotes[0:-1]]
# Add ')' to the last kernel
formated_kernels.append(kernels_with_quotes[-1] + "\n)\n\n")
mk.writelines(formated_kernels)
formatted_kernels.append(kernels_with_quotes[-1] + "\n)\n\n")
mk.writelines(formatted_kernels)


def get_test_kernels_to_load(template_path, kernel_dir_path):
Expand Down

0 comments on commit cdb8829

Please sign in to comment.