Skip to content

Commit

Permalink
Try again
Browse files Browse the repository at this point in the history
  • Loading branch information
palewire committed Sep 1, 2024
1 parent d0d1516 commit f7562b1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/continuous-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:

- id: download-data
name: Download data
run: python -m cpi.download
run: python cpi/download.py

- id: tests
name: Run tests
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
- id: download-data
name: Download data
run: $CONDA/bin/conda run -n cpi python -m cpi.download
run: $CONDA/bin/conda run -n cpi python cpi/download.py

- id: tests
name: Run tests
Expand Down
3 changes: 1 addition & 2 deletions cpi/download.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,9 @@
from pathlib import Path

import pandas as pd
import parsers
import requests

from cpi import parsers

logger = logging.getLogger(__name__)
logger.addHandler(logging.NullHandler())

Expand Down

0 comments on commit f7562b1

Please sign in to comment.