🚨 Unused f-string

This commit is contained in:
Wouter de Bruijn 2025-06-17 10:12:09 +02:00
parent 83f27849af
commit 47d42e4fba
No known key found for this signature in database
GPG Key ID: AC71F96733B92BFA

View File

@ -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)