change intra-package import statements to have absolute path. this to avoid circular importing. the imports specified in __init__ of each module are only intended to be used outside of src (e.g. tests, API usage).

This commit is contained in:
Pim Nelissen
2026-02-17 10:11:03 +01:00
parent 5684525d0f
commit c2b05c63a8
6 changed files with 10 additions and 28 deletions

View File

@ -2,7 +2,7 @@ import logging
import pandas as pd
from pg_rad.exceptions import DataLoadError, InvalidCSVError
from pg_rad.exceptions.exceptions import DataLoadError, InvalidCSVError
logger = logging.getLogger(__name__)