Skip to content

Commit

Permalink
Address review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
pankajkoti committed Feb 7, 2025
1 parent aacc922 commit 9b88931
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 2 deletions.
Empty file added cosmos/_utils/__init__.py
Empty file.
File renamed without changes.
2 changes: 1 addition & 1 deletion cosmos/operators/local.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
from packaging.version import Version

from cosmos import cache, settings
from cosmos._utils.importer import load_method_from_module
from cosmos.cache import (
_copy_cached_package_lockfile_to_project,
_get_latest_cached_package_lockfile,
Expand All @@ -34,7 +35,6 @@
from cosmos.dataset import get_dataset_alias_name
from cosmos.dbt.project import get_partial_parse_path, has_non_empty_dependencies_file
from cosmos.exceptions import AirflowCompatibilityError, CosmosDbtRunError, CosmosValueError
from cosmos.helpers import load_method_from_module
from cosmos.settings import remote_target_path, remote_target_path_conn_id

try:
Expand Down
2 changes: 1 addition & 1 deletion tests/test_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

import pytest

from cosmos.helpers import load_method_from_module
from cosmos._utils.importer import load_method_from_module

dummy_module_text = """
def dummy_method():
Expand Down

0 comments on commit 9b88931

Please sign in to comment.