Skip to content

Commit 13261bd

Browse files
committed
Fix isort import ordering using --profile black to match project requirements
1 parent e757fb1 commit 13261bd

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

stumpy/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,9 +100,9 @@ def _get_fastmath_value(module_name, func_name): # pragma: no cover
100100
else: # pragma: no cover
101101
from . import core
102102
from .core import _gpu_aamp_driver_not_found as gpu_aamp # noqa: F401
103-
from .core import (
103+
from .core import ( # noqa: F401
104104
_gpu_aamp_ostinato_driver_not_found as gpu_aamp_ostinato,
105-
) # noqa: F401
105+
)
106106
from .core import _gpu_aamp_stimp_driver_not_found as gpu_aamp_stimp # noqa: F401
107107
from .core import _gpu_aampdist_driver_not_found as gpu_aampdist # noqa: F401
108108
from .core import _gpu_mpdist_driver_not_found as gpu_mpdist # noqa: F401

tests/test_gpu_aamp_ostinato.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
if cuda.is_available():
1818
from stumpy.gpu_aamp_ostinato import gpu_aamp_ostinato
1919
else: # pragma: no cover
20-
from stumpy.core import (
20+
from stumpy.core import ( # noqa: F401
2121
_gpu_aamp_ostinato_driver_not_found as gpu_aamp_ostinato,
22-
) # noqa: F401
22+
)
2323

2424
TEST_THREADS_PER_BLOCK = 10
2525

tests/test_gpu_aamp_stimp.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
if cuda.is_available():
1010
from stumpy.gpu_aamp_stimp import gpu_aamp_stimp
1111
else: # pragma: no cover
12-
from stumpy.core import (
12+
from stumpy.core import ( # noqa: F401
1313
_gpu_aamp_stimp_driver_not_found as gpu_aamp_stimp,
14-
) # noqa: F401
14+
)
1515

1616
try:
1717
from numba.errors import NumbaPerformanceWarning

0 commit comments

Comments
 (0)