| Conditions | 1 |
| Total Lines | 12 |
| Code Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | """The central module containing all code dealing with small scale input-data |
||
| 43 | def __init__(self, dependencies): |
||
| 44 | deposit_id = config.datasets()["data-bundle"]["sources"][ |
||
| 45 | "zenodo" |
||
| 46 | ]["deposit_id"] |
||
| 47 | deposit_id_powerd = config.datasets()["data-bundle"]["sources"][ |
||
| 48 | "zenodo" |
||
| 49 | ]["deposit_id"] |
||
| 50 | super().__init__( |
||
| 51 | name="DataBundle", |
||
| 52 | version=f"{deposit_id}-{deposit_id_powerd}-0.0.3", |
||
| 53 | dependencies=dependencies, |
||
| 54 | tasks=(download,), |
||
| 55 | ) |
||
| 56 |