Fix logging test coding style

Signed-off-by: Yusuke Matsubara <whym@whym.org>
This commit is contained in:
Yusuke Matsubara 2025-02-25 01:38:55 +02:00 committed by Povilas Kanapickas
parent baccce4f3f
commit c289a3b827

View File

@ -8,10 +8,10 @@ from podman_compose import Podman
class DummyReader:
def __init__(self, data=[]):
self.data = data
def __init__(self, data=None):
self.data = data or []
async def readuntil(self, x):
async def readuntil(self, _):
return self.data.pop(0)
def at_eof(self):