Merge pull request #144 from felixonmars/patch-2

Correct a typo in util.py
This commit is contained in:
依云 2020-09-09 07:01:39 +08:00 committed by GitHub
commit f28cc7ae61
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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