mirror of
https://gitlab.freedesktop.org/libinput/libei.git
synced 2025-12-20 19:40:06 +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:
|
while self.data:
|
||||||
logger.debug("data pending dispatch: ", bytes=hexlify(self.data[:64]))
|
logger.debug("data pending dispatch: ", bytes=hexlify(self.data[:64]))
|
||||||
header = MessageHeader.from_data(self.data)
|
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)
|
consumed = self.context.dispatch(self.data)
|
||||||
if consumed == 0:
|
if consumed == 0:
|
||||||
break
|
break
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue