diff --git a/data_platform/assets/funda.py b/data_platform/assets/funda.py index 2b75e13..97ff1bd 100644 --- a/data_platform/assets/funda.py +++ b/data_platform/assets/funda.py @@ -19,7 +19,7 @@ from dagster import ( ) from sqlalchemy import text -from data_platform.assets.helpers import ( +from data_platform.helpers import ( format_area, format_euro, md_preview_table, diff --git a/data_platform/assets/helpers.py b/data_platform/helpers/__init__.py similarity index 100% rename from data_platform/assets/helpers.py rename to data_platform/helpers/__init__.py diff --git a/data_platform/resources.py b/data_platform/resources/__init__.py similarity index 100% rename from data_platform/resources.py rename to data_platform/resources/__init__.py diff --git a/tests/test_helpers.py b/tests/test_helpers.py index b6ab8ca..d71a4d1 100644 --- a/tests/test_helpers.py +++ b/tests/test_helpers.py @@ -1,6 +1,6 @@ """Tests for pure helper functions in data_platform.assets.helpers.""" -from data_platform.assets.helpers import ( +from data_platform.helpers import ( format_area, format_euro, md_preview_table,