Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
isort
Browse files Browse the repository at this point in the history
  • Loading branch information
JorikSchellekens committed Aug 16, 2019
1 parent 1ecd2ad commit b63adc8
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion synapse/handlers/device.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@

from twisted.internet import defer

import synapse.logging.opentracing as opentracing
from synapse.api import errors
from synapse.api.constants import EventTypes
from synapse.api.errors import (
Expand All @@ -31,7 +32,6 @@
from synapse.util.caches.expiringcache import ExpiringCache
from synapse.util.metrics import measure_func
from synapse.util.retryutils import NotRetryingDestination
import synapse.logging.opentracing as opentracing

from ._base import BaseHandler

Expand Down
1 change: 0 additions & 1 deletion synapse/handlers/devicemessage.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
)
from synapse.types import UserID, get_domain_from_id
from synapse.util.stringutils import random_string
import synapse.logging.opentracing as opentracing

logger = logging.getLogger(__name__)

Expand Down
2 changes: 1 addition & 1 deletion synapse/rest/client/v2_alpha/sendtodevice.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@

from twisted.internet import defer

import synapse.logging.opentracing as opentracing
from synapse.http import servlet
from synapse.http.servlet import parse_json_object_from_request
from synapse.rest.client.transactions import HttpTransactionCache
import synapse.logging.opentracing as opentracing

from ._base import client_patterns

Expand Down
2 changes: 1 addition & 1 deletion synapse/storage/deviceinbox.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@

from twisted.internet import defer

import synapse.logging.opentracing as opentracing
from synapse.storage._base import SQLBaseStore
from synapse.storage.background_updates import BackgroundUpdateStore
from synapse.util.caches.expiringcache import ExpiringCache
import synapse.logging.opentracing as opentracing

logger = logging.getLogger(__name__)

Expand Down
2 changes: 1 addition & 1 deletion synapse/storage/devices.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@
# See the License for the specific language governing permissions and
# limitations under the License.
import logging
import synapse.logging.opentracing as opentracing

from six import iteritems

from canonicaljson import json

from twisted.internet import defer

import synapse.logging.opentracing as opentracing
from synapse.api.errors import StoreError
from synapse.logging.opentracing import (
get_active_span_text_map,
Expand Down

0 comments on commit b63adc8

Please sign in to comment.