Correct a typo in util.py

This commit is contained in:
Felix Yan 2020-09-09 02:39:44 +08:00 committed by GitHub
parent 61e53b6698
commit f8444926ba
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -124,7 +124,7 @@ class BaseWorker:
raise NotImplementedError raise NotImplementedError
class AsyncCache: class AsyncCache:
'''A cache for use with async funtions.''' '''A cache for use with async functions.'''
cache: Dict[Hashable, Any] cache: Dict[Hashable, Any]
lock: asyncio.Lock lock: asyncio.Lock