From 5e95afd99fcc5373591876f2023b975e18fad3cb Mon Sep 17 00:00:00 2001 From: David Brochart Date: Wed, 4 Oct 2023 16:14:28 +0200 Subject: [PATCH] Fix _staring -> _starting (#87) --- 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")