8000 intentionally bad import order · adrinjalali/scikit-learn@3b9e26b · GitHub
[go: up one dir, main page]

Skip to content

Commit 3b9e26b

Browse files
committed
intentionally bad import order
1 parent 7b1a1a6 commit 3b9e26b

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

sklearn/model_selection/_split.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@
1111
# Rodion Martynov <marrodion@gmail.com>
1212
# License: BSD 3 clause
1313

14+
from ..base import _pprint
15+
from ..utils import _approximate_mode, _safe_indexing, check_random_state, indexable
16+
from ..utils.multiclass import type_of_target
17+
from ..utils.validation import _num_samples, check_array, column_or_1d
18+
19+
1420
import numbers
1521
import warnings
1622
from abc import ABCMeta, abstractmethod
@@ -23,11 +29,6 @@
2329
import numpy as np
2430
from scipy.special import comb
2531

26-
from ..base import _pprint
27-
from ..utils import _approximate_mode, _safe_indexing, check_random_state, indexable
28-
from ..utils.multiclass import type_of_target
29-
from ..utils.validation import _num_samples, check_array, column_or_1d
30-
3132
__all__ = [
3233
"BaseCrossValidator",
3334
"KFold",

0 commit comments

Comments
 (0)
0