Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
craigrose authored and digorgonzola committed Sep 11, 2022
1 parent 4007572 commit f666c6c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
1 change: 1 addition & 0 deletions aodncore/util/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
from .process import SystemProcess
from .wfs import DEFAULT_WFS_VERSION, WfsBroker
from .ff import get_field_type, get_tableschema_descriptor
from .s3_util import *

__all__ = [
'CaptureStdIO',
Expand Down
3 changes: 0 additions & 3 deletions aodncore/util/fileops.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@

import magic
import netCDF4
from botocore.exceptions import ClientError

from aodncore.util.s3_util import *

Expand Down Expand Up @@ -50,8 +49,6 @@
'validate_file_writable'
]

from aodncore.util.s3_util import delete_object

# allow for consistent sorting of filesystem directory listings
locale.setlocale(locale.LC_ALL, 'C')
filesystem_sort_key = cmp_to_key(locale.strcoll)
Expand Down
3 changes: 2 additions & 1 deletion aodncore/util/s3_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
"download_object",
"is_s3",
"get_s3_bucket",
"get_s3_key"
"get_s3_key",
"delete_object"
]

s3 = boto3.resource('s3')
Expand Down

0 comments on commit f666c6c

Please sign in to comment.