diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2020-10-16 16:14:42 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-16 16:14:42 +0100 |
commit | 995cc615a01bb11b70dbf8fdd0eb7f8b3d1fdc1e (patch) | |
tree | d4f28d7fc7b062bb5ec0f0499169ea01209cb3d5 /synapse/util | |
parent | changelog (diff) | |
download | synapse-995cc615a01bb11b70dbf8fdd0eb7f8b3d1fdc1e.tar.xz |
Apply suggestions from code review
Co-authored-by: Patrick Cloke <clokep@users.noreply.github.com>
Diffstat (limited to 'synapse/util')
-rw-r--r-- | synapse/util/caches/lrucache.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/util/caches/lrucache.py b/synapse/util/caches/lrucache.py index 0eed53d3f4..1a2c2d4c0b 100644 --- a/synapse/util/caches/lrucache.py +++ b/synapse/util/caches/lrucache.py @@ -283,7 +283,7 @@ class LruCache(Generic[KT, VT]): return value @overload - def cache_pop(key: KT, default: Literal[None] = None) -> Union[None, VT]: + def cache_pop(key: KT, default: Literal[None] = None) -> Optional[VT]: ... @overload |