From 863fa6e97910ef57526534db592c5be05a533380 Mon Sep 17 00:00:00 2001 From: Emmanuel Garette Date: Sun, 21 Jun 2026 17:08:40 +0200 Subject: [PATCH] fix: black --- src/rougail/user_data_yaml/__init__.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/rougail/user_data_yaml/__init__.py b/src/rougail/user_data_yaml/__init__.py index a623f01..f6517d2 100644 --- a/src/rougail/user_data_yaml/__init__.py +++ b/src/rougail/user_data_yaml/__init__.py @@ -57,7 +57,9 @@ class RougailUserDataYaml: if filename.is_file(): self.filenames.append(filename) else: - for name in sorted(chain(filename.glob('*.yml'), filename.glob('*.yaml'))): + for name in sorted( + chain(filename.glob("*.yml"), filename.glob("*.yaml")) + ): self.filenames.append(name) self.file_with_secrets = self.rougailconfig["yaml.file_with_secrets"] @@ -71,7 +73,7 @@ class RougailUserDataYaml: def run( self, ) -> None: - self.yaml = YAML(typ='safe', pure=True) + self.yaml = YAML(typ="safe", pure=True) user_data = [] if self.file_with_secrets == "last": last_filename_idx = len(self.filenames) - 1