From 3fd605969cdb2a96f96d5fb82f73dabfeba91e86 Mon Sep 17 00:00:00 2001 From: James Ward Date: Mon, 13 Nov 2023 19:45:04 -0500 Subject: [PATCH] chore: fix grammar in comment about imports --- asyncio/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/asyncio/core.py b/asyncio/core.py index 0201116..2e360a7 100644 --- a/asyncio/core.py +++ b/asyncio/core.py @@ -26,7 +26,7 @@ # Depending on the release of CircuitPython these errors may or may not # exist in the C implementation of `_asyncio`. However, when they -# do exist, must be preferred over the Python code. +# do exist, they must be preferred over the Python code. try: from _asyncio import CancelledError, InvalidStateError except (ImportError, AttributeError):