How to treat existing datasets
| 379 | |
| 380 | |
| 381 | class DownloadMode(enum.Enum): |
| 382 | """ How to treat existing datasets |
| 383 | """ |
| 384 | REUSE_DATASET_IF_EXISTS = 'reuse_dataset_if_exists' |
| 385 | FORCE_REDOWNLOAD = 'force_redownload' |
| 386 | |
| 387 | |
| 388 | class DownloadChannel(enum.Enum): |
no outgoing calls
no test coverage detected
searching dependent graphs…