diff options
author | David Robertson <davidr@element.io> | 2022-03-29 11:41:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-29 10:41:19 +0000 |
commit | a2b00a44865ff11810c5302e33c1c61ce21a030e (patch) | |
tree | d16f0f5378588b3fb2c4584b00f271219255e2c1 /synapse/storage | |
parent | Remove unused `auth_event_ids` argument plumbing (#12304) (diff) | |
download | synapse-a2b00a44865ff11810c5302e33c1c61ce21a030e.tar.xz |
Bump `black` and `click` versions (#12320)
Diffstat (limited to 'synapse/storage')
-rw-r--r-- | synapse/storage/database.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/database.py b/synapse/storage/database.py index 72fef1533f..3ef2bdd74b 100644 --- a/synapse/storage/database.py +++ b/synapse/storage/database.py @@ -63,7 +63,7 @@ if TYPE_CHECKING: from synapse.server import HomeServer # python 3 does not have a maximum int value -MAX_TXN_ID = 2 ** 63 - 1 +MAX_TXN_ID = 2**63 - 1 logger = logging.getLogger(__name__) |