diff options
author | Hubert Chathi <hubert@uhoreg.ca> | 2018-09-06 11:23:16 -0400 |
---|---|---|
committer | Hubert Chathi <hubert@uhoreg.ca> | 2018-09-06 11:35:19 -0400 |
commit | 3801b8aa035594972c400c8bd036894a388c4ab3 (patch) | |
tree | 3a2dd0efda2fbc85f45a8bb0132bd46fcc9651d8 /tests/handlers | |
parent | update to newer Synapse APIs (diff) | |
download | synapse-3801b8aa035594972c400c8bd036894a388c4ab3.tar.xz |
try to make flake8 and isort happy
Diffstat (limited to 'tests/handlers')
-rw-r--r-- | tests/handlers/test_e2e_room_keys.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/tests/handlers/test_e2e_room_keys.py b/tests/handlers/test_e2e_room_keys.py index 7fa4264441..9e08eac0a5 100644 --- a/tests/handlers/test_e2e_room_keys.py +++ b/tests/handlers/test_e2e_room_keys.py @@ -14,17 +14,18 @@ # See the License for the specific language governing permissions and # limitations under the License. +import copy + import mock -from synapse.api import errors + from twisted.internet import defer -import copy import synapse.api.errors import synapse.handlers.e2e_room_keys - import synapse.storage -from tests import unittest, utils +from synapse.api import errors +from tests import unittest, utils # sample room_key data for use in the tests room_keys = { |