From f9147f33bf1afd71c95334bf518de357ad8507d2 Mon Sep 17 00:00:00 2001 From: Allison Karlitskaya Date: Mon, 11 Mar 2024 11:20:07 +0100 Subject: [PATCH] break two things ...let's make sure we're definitely catching this :) --- src/cockpit/peer.py | 2 +- test/pytest/test_samples.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cockpit/peer.py b/src/cockpit/peer.py index 3009e3b33fec..d5b1fda2be20 100644 --- a/src/cockpit/peer.py +++ b/src/cockpit/peer.py @@ -49,7 +49,7 @@ def __init__(self, router: Router): self.freeze_endpoint() self.init_future = asyncio.get_running_loop().create_future() - self.done_callbacks = [] + self.done_callbacks = () # Initialization async def do_connect_transport(self) -> None: diff --git a/test/pytest/test_samples.py b/test/pytest/test_samples.py index 36451eb75ea9..1a5133ff75a2 100644 --- a/test/pytest/test_samples.py +++ b/test/pytest/test_samples.py @@ -16,8 +16,8 @@ # along with this program. If not, see . import collections -import multiprocessing import numbers +import multiprocessing import os import pytest