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

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
anoadragon453 committed Apr 6, 2020
1 parent 6e979a1 commit fec13be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion synapse/config/cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def read_config(self, config, **kwargs):

individual_factors.update(individual_factors_config)

self.cache_factors = dict() # type: Dict[str, float]
self.cache_factors = {} # type: Dict[str, float]

for cache, factor in individual_factors.items():
if not isinstance(factor, (int, float)):
Expand Down

0 comments on commit fec13be

Please sign in to comment.