-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(finess): use FinessConfig object instead of vars
- Loading branch information
Showing
2 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
import pandas as pd | ||
from dag_datalake_sirene.config import URL_MINIO_FINESS | ||
from dag_datalake_sirene.workflows.data_pipelines.finess.config import FINESS_CONFIG | ||
|
||
|
||
def preprocess_finess_data(data_dir): | ||
df_finess = pd.read_csv(URL_MINIO_FINESS, dtype=str) | ||
df_finess = pd.read_csv(FINESS_CONFIG.url_minio, dtype=str) | ||
return df_finess |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters