summary refs log tree commit diff
path: root/synapse/replication/http/__init__.py
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2018-03-14 14:19:23 +0000
committerErik Johnston <erik@matrix.org>2018-03-14 14:19:23 +0000
commit0011ede3b0ba9de22af3bb36c300b6779918bfa1 (patch)
tree0fd60b27cc3a09e1aa840c697e970c7868cc373a /synapse/replication/http/__init__.py
parents/join/joined/ in notify_user_membership_change (diff)
downloadsynapse-0011ede3b0ba9de22af3bb36c300b6779918bfa1.tar.xz
Fix imports
Diffstat (limited to 'synapse/replication/http/__init__.py')
-rw-r--r--synapse/replication/http/__init__.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/synapse/replication/http/__init__.py b/synapse/replication/http/__init__.py
index 7a148301de..1d7a607529 100644
--- a/synapse/replication/http/__init__.py
+++ b/synapse/replication/http/__init__.py
@@ -13,11 +13,8 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-
-import send_event
-import membership
-
 from synapse.http.server import JsonResource
+from synapse.replication.http import membership, send_event
 
 
 REPLICATION_PREFIX = "/_synapse/replication"