isorted this mess

This commit is contained in:
Will Hunt 2018-07-27 12:28:08 +01:00
parent 46afacc215
commit 0f6e583e6f
2 changed files with 2 additions and 1 deletions

View File

@ -17,6 +17,7 @@
from twisted.internet import defer
from twisted.web.resource import Resource
from twisted.web.server import NOT_DONE_YET
from synapse.http.server import respond_with_json, wrap_json_request_handler

View File

@ -42,6 +42,7 @@ from synapse.util.retryutils import NotRetryingDestination
from synapse.util.stringutils import is_ascii, random_string
from ._base import FileInfo, respond_404, respond_with_responder
from .config_resource import MediaConfigResource
from .download_resource import DownloadResource
from .filepath import MediaFilePaths
from .identicon_resource import IdenticonResource
@ -51,7 +52,6 @@ from .storage_provider import StorageProviderWrapper
from .thumbnail_resource import ThumbnailResource
from .thumbnailer import Thumbnailer
from .upload_resource import UploadResource
from .config_resource import MediaConfigResource
logger = logging.getLogger(__name__)