From ed7fa8cf02334d296ec9cadd306340e4f9cf83d1 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Sun, 28 May 2023 22:56:08 +0200 Subject: [PATCH] fix f-string linting error --- ansiblelater/standard.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansiblelater/standard.py b/ansiblelater/standard.py index ae4b45e..5fd3c6b 100644 --- a/ansiblelater/standard.py +++ b/ansiblelater/standard.py @@ -328,7 +328,7 @@ class StandardLoader(): if self._is_plugin(obj): self.rules.append(obj()) except TypeError as e: - sysexit_with_message(f"Failed to load roles file: \n {str(e)}") + sysexit_with_message(f"Failed to load roles file: \n {e!s}") self.validate()