From 2aaf7acdfcbafb547c7594c7db80b89bd18b5655 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Mon, 27 Feb 2023 16:53:44 +1000 Subject: [PATCH] test: fix a ruff warning - f-string without placeholder --- test/test_protocol.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_protocol.py b/test/test_protocol.py index f1afe10..14ca818 100644 --- a/test/test_protocol.py +++ b/test/test_protocol.py @@ -218,7 +218,7 @@ class Ei: while self.data: logger.debug("data pending dispatch: ", bytes=hexlify(self.data[:64])) header = MessageHeader.from_data(self.data) - logger.debug(f"dispatching message: ", header=header) + logger.debug("dispatching message: ", header=header) consumed = self.context.dispatch(self.data) if consumed == 0: break