Skip to content

Commit

Permalink
fix: correct import typo
Browse files Browse the repository at this point in the history
  • Loading branch information
siddharth7113 committed Jan 4, 2025
1 parent 0424255 commit 465779b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion neso_solar_consumer/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
from sqlalchemy import create_engine
from neso_solar_consumer.fetch_data import fetch_data
from neso_solar_consumer.format_forecast import format_to_forecast_sql
from neso_solar_consumer.save_forecasts import save_forecasts_to_db
from neso_solar_consumer.save_forecast import save_forecasts_to_db

# Configure logging
logging.basicConfig(
Expand Down
2 changes: 1 addition & 1 deletion tests/test_real_forecasts.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
from nowcasting_datamodel.models import ForecastSQL
from neso_solar_consumer.fetch_data import fetch_data
from neso_solar_consumer.format_forecast import format_to_forecast_sql
from neso_solar_consumer.save_forecasts import save_forecasts_to_db
from neso_solar_consumer.save_forecast import save_forecasts_to_db


@pytest.mark.integration
Expand Down

0 comments on commit 465779b

Please sign in to comment.