From 5afb9ab893a839e1a7c0f1c0b8dc8a5cb6404a70 Mon Sep 17 00:00:00 2001 From: Teal Dulcet Date: Fri, 21 Mar 2025 05:20:37 -0700 Subject: [PATCH] Fixed EM102 (f-string-in-exception): Exception must not use an f-string literal, assign to variable first --- tests/fail2ban.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/fail2ban.py b/tests/fail2ban.py index a00a4ca4..2dc4bc9f 100644 --- a/tests/fail2ban.py +++ b/tests/fail2ban.py @@ -199,7 +199,8 @@ def run_test(testfunc, args, count, within_seconds, parallel): # Did we make enough requests within the limit? if (time.time()-start_time) > within_seconds: - raise Exception(f"Test failed to make {count} requests in {within_seconds:d} seconds.") + msg = f"Test failed to make {count} requests in {within_seconds:d} seconds." + raise Exception(msg) # Wait a moment for the block to be put into place. time.sleep(4)