From ff9365038578025ce5935efd051244369430b697 Mon Sep 17 00:00:00 2001 From: mirpedrol Date: Mon, 10 Oct 2022 10:08:19 +0200 Subject: [PATCH] fix indentless bug --- nf_core/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nf_core/utils.py b/nf_core/utils.py index 662ba2b0d8..57907109f9 100644 --- a/nf_core/utils.py +++ b/nf_core/utils.py @@ -745,7 +745,7 @@ def represent_dict_preserve_order(self, data): """ return self.represent_dict(data.items()) - def increase_indent(self, flow=False): + def increase_indent(self, flow=False, indentless=False): """Indent YAML lists so that YAML validates with Prettier See https://github.com/yaml/pyyaml/issues/234#issuecomment-765894586