summary refs log tree commit diff
path: root/synapse/util
diff options
context:
space:
mode:
authorJonathan de Jong <jonathan@automatia.nl>2021-03-24 14:34:30 +0100
committerGitHub <noreply@github.com>2021-03-24 09:34:30 -0400
commit4c3827f2c18180533b804ebd4d8f5cb90774244b (patch)
tree5a655fea7a1aeb307e09787f73a29db8918a0a64 /synapse/util
parentSpaces summary: call out to other servers (#9653) (diff)
downloadsynapse-4c3827f2c18180533b804ebd4d8f5cb90774244b.tar.xz
Enable addtional flake8-bugbear linting checks. (#9659)
Diffstat (limited to 'synapse/util')
-rw-r--r--synapse/util/async_helpers.py2
-rw-r--r--synapse/util/caches/__init__.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/synapse/util/async_helpers.py b/synapse/util/async_helpers.py
index f33c115844..c3b2d981ea 100644
--- a/synapse/util/async_helpers.py
+++ b/synapse/util/async_helpers.py
@@ -496,7 +496,7 @@ def timeout_deferred(
 
         try:
             deferred.cancel()
-        except:  # noqa: E722, if we throw any exception it'll break time outs
+        except Exception:  # if we throw any exception it'll break time outs
             logger.exception("Canceller failed during timeout")
 
         # the cancel() call should have set off a chain of errbacks which
diff --git a/synapse/util/caches/__init__.py b/synapse/util/caches/__init__.py
index e676c2cac4..f968706334 100644
--- a/synapse/util/caches/__init__.py
+++ b/synapse/util/caches/__init__.py
@@ -116,7 +116,7 @@ def register_cache(
     """
     if resizable:
         if not resize_callback:
-            resize_callback = getattr(cache, "set_cache_factor")
+            resize_callback = cache.set_cache_factor  # type: ignore
         add_resizable_cache(cache_name, resize_callback)
 
     metric = CacheMetric(cache, cache_type, cache_name, collect_callback)