From 307f40e32056cd55d42a38d8457723bbdcd4c963 Mon Sep 17 00:00:00 2001 From: David Brochart Date: Wed, 4 Oct 2023 16:06:46 +0200 Subject: [PATCH] Fix _staring -> _starting --- ypy_websocket/ystore.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ypy_websocket/ystore.py b/ypy_websocket/ystore.py index d7855ac..f4ad417 100644 --- a/ypy_websocket/ystore.py +++ b/ypy_websocket/ystore.py @@ -80,7 +80,7 @@ async def start(self, *, task_status: TaskStatus[None] = TASK_STATUS_IGNORED): if self._starting: return else: - self._staring = True + self._starting = True if self._task_group is not None: raise RuntimeError("YStore already running")