Skip to content

Commit

Permalink
rename the aws s3 utility (#209)
Browse files Browse the repository at this point in the history
Co-authored-by: Ken Yocum <ken_yocum@intuit.com>
  • Loading branch information
kyocum and Ken Yocum authored May 14, 2024
1 parent 5f00398 commit f2a933f
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion disdat/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
from disdat import logger as _logger
from disdat.data_context import DataContext
from disdat.hyperframe import HyperFrameRecord, LineageRecord, parse_return_val
from disdat.utility.asyncio_aws_s3 import s3_path_exists
from disdat.utility.aws_s3 import s3_path_exists

PROC_ID_TRUNCATE_HASH = 10 # 10 ls hex digits

Expand Down
2 changes: 1 addition & 1 deletion disdat/data_context.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
import disdat.constants as constants
import disdat.hyperframe as hyperframe
import disdat.hyperframe_pb2 as hyperframe_pb2
import disdat.utility.asyncio_aws_s3 as aws_s3
import disdat.utility.aws_s3 as aws_s3
from disdat import logger as _logger
from disdat.common import DisdatConfig

Expand Down
2 changes: 1 addition & 1 deletion disdat/fs.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

import disdat.common as common
import disdat.hyperframe as hyperframe
import disdat.utility.asyncio_aws_s3 as aws_s3
import disdat.utility.aws_s3 as aws_s3
from disdat import logger as _logger
from disdat.common import CatNoBundleError, DisdatConfig
from disdat.data_context import DataContext
Expand Down
2 changes: 1 addition & 1 deletion disdat/hyperframe.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
import disdat.common as common
from disdat import hyperframe_pb2
from disdat import logger as _logger
from disdat.utility.asyncio_aws_s3 import s3_path_exists
from disdat.utility.aws_s3 import s3_path_exists

HyperFrameTuple = namedtuple("HyperFrameTuple", "columns, links, uuid, tags")

Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion tests/bundles/test_file_bundle_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import pytest

import disdat.api as api
import disdat.utility.asyncio_aws_s3 as aws_s3
import disdat.utility.aws_s3 as aws_s3
from tests.functional.common import TEST_CONTEXT, run_test

#
Expand Down
2 changes: 1 addition & 1 deletion tests/functional/test_link_localization.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
import pytest

import disdat.api as api
import disdat.utility.asyncio_aws_s3 as aws_s3
import disdat.utility.aws_s3 as aws_s3
from tests.functional.common import TEST_CONTEXT

TEST_REMOTE = "__test_remote_context__"
Expand Down

0 comments on commit f2a933f

Please sign in to comment.