diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2021-06-30 07:08:42 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-30 07:08:42 -0400 |
commit | aaf7d1acb8804ddeeb007e21c2b2c915bd494898 (patch) | |
tree | a9c681133371c7985b881e9df2554eb7bf5b115d /synapse/events/__init__.py | |
parent | Fix the inbound PDU metric (#10279) (diff) | |
download | synapse-aaf7d1acb8804ddeeb007e21c2b2c915bd494898.tar.xz |
Correct type hints for synapse.event_auth. (#10253)
Diffstat (limited to 'synapse/events/__init__.py')
-rw-r--r-- | synapse/events/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/events/__init__.py b/synapse/events/__init__.py index 0cb9c1cc1e..6286ad999a 100644 --- a/synapse/events/__init__.py +++ b/synapse/events/__init__.py @@ -118,7 +118,7 @@ class _EventInternalMetadata: proactively_send = DictProperty("proactively_send") # type: bool redacted = DictProperty("redacted") # type: bool txn_id = DictProperty("txn_id") # type: str - token_id = DictProperty("token_id") # type: str + token_id = DictProperty("token_id") # type: int historical = DictProperty("historical") # type: bool # XXX: These are set by StreamWorkerStore._set_before_and_after. |