fix: add Path wrapper in workflow debug step

This commit is contained in:
matt 2025-10-18 22:27:13 -07:00
parent 30dfca0b67
commit a689400c47

View file

@ -94,9 +94,10 @@ jobs:
run: | run: |
python -c " python -c "
import pandas as pd import pandas as pd
from pathlib import Path
from code.path_util import get_processed_cards_path from code.path_util import get_processed_cards_path
parquet_path = get_processed_cards_path() parquet_path = Path(get_processed_cards_path())
print(f'Reading Parquet file: {parquet_path}') print(f'Reading Parquet file: {parquet_path}')
print(f'File exists: {parquet_path.exists()}') print(f'File exists: {parquet_path.exists()}')