From f8444926baf69af792b5d9a94f32868579bd2666 Mon Sep 17 00:00:00 2001 From: Felix Yan Date: Wed, 9 Sep 2020 02:39:44 +0800 Subject: [PATCH] Correct a typo in util.py --- nvchecker/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nvchecker/util.py b/nvchecker/util.py index 493219b..d35ff70 100644 --- a/nvchecker/util.py +++ b/nvchecker/util.py @@ -124,7 +124,7 @@ class BaseWorker: raise NotImplementedError class AsyncCache: - '''A cache for use with async funtions.''' + '''A cache for use with async functions.''' cache: Dict[Hashable, Any] lock: asyncio.Lock