Skip to content

Commit

Permalink
Chunked uploads handling (danielfrg#80)
Browse files Browse the repository at this point in the history
Reorder imports
  • Loading branch information
pvanliefland committed Aug 26, 2020
1 parent 608a0b8 commit 3c7458e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions s3contents/genericmanager.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@

from tornado.web import HTTPError

from s3contents.chunks import (
CHUNKS_HANDLING,
assemble_chunks,
delete_chunks,
store_content_chunk,
)
from s3contents.genericfs import GenericFSError, NoSuchFile
from s3contents.ipycompat import (
ContentsManager,
Expand All @@ -14,12 +20,6 @@
from_dict,
reads,
)
from s3contents.chunks import (
CHUNKS_HANDLING,
assemble_chunks,
delete_chunks,
store_content_chunk,
)


DUMMY_CREATED_DATE = datetime.datetime.fromtimestamp(86400)
Expand Down

0 comments on commit 3c7458e

Please sign in to comment.