From 09079b61fcea67de1b8d2d8660bbbe26ae35aa6e Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Tue, 1 Mar 2022 12:37:31 -0500 Subject: [PATCH] Comment task canceller method prototype --- piker/data/feed.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/piker/data/feed.py b/piker/data/feed.py index 0e1f1248..97f4c046 100644 --- a/piker/data/feed.py +++ b/piker/data/feed.py @@ -123,8 +123,11 @@ class _FeedsBus(BaseModel): return await self.nursery.start(start_with_cs) - def cancel_task(self, task: trio.Task) -> bool: - pass + # def cancel_task( + # self, + # task: trio.lowlevel.Task + # ) -> bool: + # ... _bus: _FeedsBus = None