-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
renamed data_handers.factory to data_handlers.base, after removal of …
…explicit factory class. Clarified which class were inherited and composed in doc strings.
- Loading branch information
Showing
4 changed files
with
8 additions
and
9 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,10 +1,10 @@ | ||
"""Composite objects built from loaders, rasterizers, and derivers.""" | ||
|
||
from .exo import ExoData, ExoDataHandler, SingleExoDataStep | ||
from .factory import ( | ||
from .base import ( | ||
DailyDataHandler, | ||
DataHandler, | ||
DataHandlerH5SolarCC, | ||
DataHandlerH5WindCC, | ||
) | ||
from .exo import ExoData, ExoDataHandler, SingleExoDataStep | ||
from .nc_cc import DataHandlerNCforCC, DataHandlerNCforCCwithPowerLaw |
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
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
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