From 47d42e4fbad57bf87fbc5fb98396a6d35053e3a3 Mon Sep 17 00:00:00 2001 From: Wouter de Bruijn Date: Tue, 17 Jun 2025 10:12:09 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=A8=20Unused=20f-string?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/test_hostgroups.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_hostgroups.py b/tests/test_hostgroups.py index 6e79b20..37612f3 100644 --- a/tests/test_hostgroups.py +++ b/tests/test_hostgroups.py @@ -335,7 +335,7 @@ class TestHostgroups(unittest.TestCase): # Check that print was called with expected output calls = [ - call.write(f"The following options are available for host test-device"), + call.write("The following options are available for host test-device"), call.write("\n"), ] mock_stdout.assert_has_calls(calls, any_order=True)