Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Cleanup AsyncLruCache docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
Fizzadar committed Jul 14, 2022
1 parent b064024 commit 856f286
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions synapse/util/caches/lrucache.py
Original file line number Diff line number Diff line change
Expand Up @@ -734,9 +734,10 @@ def __del__(self) -> None:

class AsyncLruCache(Generic[KT, VT]):
"""
An asynchronous wrapper around a subset of the LruCache API. On it's own
this doesn't change the behaviour but allows subclasses that utilize
external cache systems that require await behaviour to be created.
An asynchronous wrapper around a subset of the LruCache API.
On it's own this doesn't change the behaviour but allows subclasses that
utilize external cache systems that require await behaviour to be created.
"""

def __init__(self, *args, **kwargs): # type: ignore
Expand Down

0 comments on commit 856f286

Please sign in to comment.