Skip to content

Commit 2f86d57

Browse files
committed
Make BaseDandiAPIDownloadBenchmark an ABC
1 parent 2b969f7 commit 2f86d57

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/nwb_benchmarks/benchmarks/time_download.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Basic benchmarks for timing download of remote NWB files using different methods."""
2+
from abc import ABC
23

34
from asv_runner.benchmarks.mark import skip_benchmark_if
45
from dandi.download import DownloadExisting, download
@@ -10,7 +11,7 @@
1011
from .params_remote_download import hdf5_params, lindi_remote_rfs_params, zarr_params
1112

1213

13-
class BaseDandiAPIDownloadBenchmark(BaseBenchmark):
14+
class BaseDandiAPIDownloadBenchmark(BaseBenchmark, ABC):
1415
"""
1516
Base class for timing the download of remote NWB files using the DANDI API.
1617
"""

0 commit comments

Comments
 (0)