diff options
author | Paul "LeoNerd" Evans <paul@matrix.org> | 2016-08-25 18:34:47 +0100 |
---|---|---|
committer | Paul "LeoNerd" Evans <paul@matrix.org> | 2016-08-25 18:34:47 +0100 |
commit | 1294d4a3299faba9b5f09ec6f452dfb2ab9f5e35 (patch) | |
tree | 399b50b75d5836d88292425721ac5faa40386a47 /synapse/rest | |
parent | Root the 3PE lookup API within /_matrix/app/unstable instead of at toplevel (diff) | |
download | synapse-1294d4a3299faba9b5f09ec6f452dfb2ab9f5e35.tar.xz |
Move ThirdPartyEntityKind into api.constants so the expectation becomes that the value is significant
Diffstat (limited to 'synapse/rest')
-rw-r--r-- | synapse/rest/client/v2_alpha/thirdparty.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/rest/client/v2_alpha/thirdparty.py b/synapse/rest/client/v2_alpha/thirdparty.py index bbc3e9b962..4f6f1a7e17 100644 --- a/synapse/rest/client/v2_alpha/thirdparty.py +++ b/synapse/rest/client/v2_alpha/thirdparty.py @@ -18,8 +18,8 @@ import logging from twisted.internet import defer +from synapse.api.constants import ThirdPartyEntityKind from synapse.http.servlet import RestServlet -from synapse.types import ThirdPartyEntityKind from ._base import client_v2_patterns logger = logging.getLogger(__name__) |