From 9700096f1538ec8e21e74bbafc7ab61b807b1006 Mon Sep 17 00:00:00 2001 From: Rick Elrod Date: Thu, 16 Dec 2021 15:35:06 -0600 Subject: [PATCH] does this sate the linter? Signed-off-by: Rick Elrod --- .../configuration_subsystem/navigator_post_processor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ansible_navigator/configuration_subsystem/navigator_post_processor.py b/src/ansible_navigator/configuration_subsystem/navigator_post_processor.py index 1e6f8f6ed..edec7be80 100644 --- a/src/ansible_navigator/configuration_subsystem/navigator_post_processor.py +++ b/src/ansible_navigator/configuration_subsystem/navigator_post_processor.py @@ -89,7 +89,7 @@ def to_string(self) -> str: """Render the volume mount in a way that (docker|podman) understands.""" out = f"{self.src}:{self.dest}" if self.options: - joined_opts = ",".join(o.value for o in self.options) + joined_opts = ",".join([o.value for o in self.options]) out += f":{joined_opts}" return out