From 063d2d08afb20066e26bd57f3af7f24432b44a0f Mon Sep 17 00:00:00 2001 From: cloudwithax Date: Sat, 13 Nov 2021 13:13:04 -0500 Subject: [PATCH] why was the node.stats property async --- pomice/pool.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pomice/pool.py b/pomice/pool.py index ffbfab2..7db8019 100644 --- a/pomice/pool.py +++ b/pomice/pool.py @@ -118,7 +118,7 @@ class Node: @property - async def stats(self) -> NodeStats: + def stats(self) -> NodeStats: """Property which returns the node stats.""" return self._stats