diff options
author | Amber H. Brown <hawkowl@atleastfornow.net> | 2020-02-17 17:50:35 +1100 |
---|---|---|
committer | Amber H. Brown <hawkowl@atleastfornow.net> | 2020-02-17 17:50:35 +1100 |
commit | 2619891343cc55b307ae36e6dda6247b2d6a5f73 (patch) | |
tree | 38c6cbe3a85806c283ab302ad5e72b26fb37d9e6 | |
parent | add tests for individual cache sizing, and fix up the individual cache sizing... (diff) | |
download | synapse-2619891343cc55b307ae36e6dda6247b2d6a5f73.tar.xz |
fix
-rw-r--r-- | synapse/config/cache.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/synapse/config/cache.py b/synapse/config/cache.py index dbc2971eeb..bb68551954 100644 --- a/synapse/config/cache.py +++ b/synapse/config/cache.py @@ -14,8 +14,7 @@ # limitations under the License. import os -from collections import defaultdict -from typing import DefaultDict +from typing import Dict from ._base import Config, ConfigError |