diff options
author | Paul "LeoNerd" Evans <paul@matrix.org> | 2015-03-26 11:53:58 +0000 |
---|---|---|
committer | Paul "LeoNerd" Evans <paul@matrix.org> | 2015-03-26 11:53:58 +0000 |
commit | a198894bf737566e368db546121aca026ed1fbeb (patch) | |
tree | 8123f93042e93a5fe432027303565b1519b74c0c /synapse/storage/_base.py | |
parent | Implement the main getEvent cache using Cache() instead of a custom applicati... (diff) | |
download | synapse-a198894bf737566e368db546121aca026ed1fbeb.tar.xz |
Appease pep8
Diffstat (limited to 'synapse/storage/_base.py')
-rw-r--r-- | synapse/storage/_base.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/synapse/storage/_base.py b/synapse/storage/_base.py index 5c7bd22e64..cf4c76d332 100644 --- a/synapse/storage/_base.py +++ b/synapse/storage/_base.py @@ -733,7 +733,8 @@ class SQLBaseStore(object): def _invalidate_get_event_cache(self, event_id): for check_redacted in (False, True): for get_prev_content in (False, True): - self._get_event_cache.invalidate(event_id, check_redacted, get_prev_content) + self._get_event_cache.invalidate(event_id, check_redacted, + get_prev_content) def _get_event_txn(self, txn, event_id, check_redacted=True, get_prev_content=False, allow_rejected=False): |