mirror of
https://gitlab.freedesktop.org/libinput/libei.git
synced 2025-12-20 17:20:05 +01:00
test: fix a ruff warning - f-string without placeholder
This commit is contained in:
parent
705c5d79ac
commit
2aaf7acdfc
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue