diff options
author | Mathieu Velten <mathieuv@matrix.org> | 2022-12-13 10:25:19 +0100 |
---|---|---|
committer | Mathieu Velten <mathieuv@matrix.org> | 2022-12-13 10:25:19 +0100 |
commit | 4dc7b444bd167f217684cc4de68745e1f6a33ef5 (patch) | |
tree | bc0172f6e95c3d3bb05b17636959e4538d136a94 | |
parent | Adress comments (diff) | |
download | synapse-github/mv/unbind-callback.tar.xz |
Fix import order github/mv/unbind-callback mv/unbind-callback
-rw-r--r-- | synapse/module_api/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/module_api/__init__.py b/synapse/module_api/__init__.py index dc34afcbff..53506f69d3 100644 --- a/synapse/module_api/__init__.py +++ b/synapse/module_api/__init__.py @@ -67,8 +67,8 @@ from synapse.events.third_party_rules import ( ON_NEW_EVENT_CALLBACK, ON_PROFILE_UPDATE_CALLBACK, ON_THREEPID_BIND_CALLBACK, - UNBIND_THREEPID_CALLBACK, ON_USER_DEACTIVATION_STATUS_CHANGED_CALLBACK, + UNBIND_THREEPID_CALLBACK, ) from synapse.handlers.account_data import ON_ACCOUNT_DATA_UPDATED_CALLBACK from synapse.handlers.account_validity import ( |