Skip to content

Commit

Permalink
Fix import
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobbieker committed Oct 26, 2023
1 parent 8a4e814 commit 7caf529
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion nwp/assets/cams/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from .cams import fetch_cams_forecast_for_day
from .cams_global import fetch_cams_forecast_for_day
from .cams_eu import fetch_cams_eu_forecast_for_day
from .utils import CAMSConfig
2 changes: 1 addition & 1 deletion nwp/assets/cams/cams_eu.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import cdsapi
import dagster
from dagster import AssetObservation
from nwp.assets.cams import CAMSConfig
from nwp.assets.cams.utils import CAMSConfig


INIT_TIMES: list[str] = [
Expand Down
2 changes: 1 addition & 1 deletion nwp/assets/cams/cams.py → nwp/assets/cams/cams_global.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import dagster
from dagster import AssetObservation

from nwp.assets.cams import CAMSConfig
from nwp.assets.cams.utils import CAMSConfig

SINGLE_NEW_VARIABLES: list[str] = [
'ammonium_aerosol_optical_depth_550nm', 'black_carbon_aerosol_optical_depth_550nm', 'dust_aerosol_optical_depth_550nm',
Expand Down

0 comments on commit 7caf529

Please sign in to comment.