chore(repo): Rename data loading module

This commit is contained in:
Marty Oehme 2024-01-10 17:27:48 +01:00
parent de5bc68836
commit 4dd8e13d6b
Signed by: Marty
GPG key ID: EDBF2ED917B2EF6A
4 changed files with 5 additions and 5 deletions

View file

@ -2,9 +2,9 @@ import io
from pathlib import Path
import sys
try:
import src.load_yaml as yaml # for quarto document scripts
import src.yaml as yaml # for quarto document scripts
except ModuleNotFoundError:
import load_yaml as yaml # for directly running the package
import yaml as yaml # for directly running the package
from pandas import DataFrame, read_csv
DEFAULT_YAML_PATH = Path("02-data/processed")