Skip to content

Commit

Permalink
Fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin Gutiérrez committed Oct 20, 2021
1 parent 9492414 commit c2bf7df
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
3 changes: 2 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@ sftp =
[flake8]
exclude =
.tox,
docs
docs,
venv
max-line-length = 119

[isort]
Expand Down
4 changes: 2 additions & 2 deletions storages/backends/s3boto3.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
from storages.base import BaseStorage
from storages.compress import CompressFileMixin, CompressStorageMixin
from storages.utils import (
check_location, get_available_overwrite_name,
lookup_env, safe_join, setting, to_bytes,
check_location, get_available_overwrite_name, lookup_env, safe_join,
setting, to_bytes,
)

try:
Expand Down
1 change: 0 additions & 1 deletion storages/compress.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import io
from gzip import GzipFile

from storages.utils import GzipCompressionWrapper
Expand Down

0 comments on commit c2bf7df

Please sign in to comment.