dict() -> {}

pull/6391/head
Andrew Morgan 2020-04-24 21:37:31 +01:00
parent 5f3eddcdc3
commit fcc9c3ac01
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ class CacheConfig(Config):
def read_config(self, config, **kwargs):
self.event_cache_size = self.parse_size(config.get("event_cache_size", "10K"))
self.cache_factors = dict() # type: Dict[str, float]
self.cache_factors = {} # type: Dict[str, float]
cache_config = config.get("caches", {})