File tree Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ lint-fix:
10
10
11
11
lint-tests :
12
12
flake8 nlp_primitives
13
- isort --check-only --recursive nlp_primitives
13
+ isort --check-only nlp_primitives
14
14
15
15
unit-tests :
16
16
pytest --cache-clear --show-capture=stderr -vv
Original file line number Diff line number Diff line change @@ -53,8 +53,10 @@ def test_arg_init(self):
53
53
54
54
55
55
def find_applicable_primitives (primitive ):
56
- from featuretools .primitives .utils import get_aggregation_primitives
57
- from featuretools .primitives .utils import get_transform_primitives
56
+ from featuretools .primitives .utils import (
57
+ get_aggregation_primitives ,
58
+ get_transform_primitives
59
+ )
58
60
all_transform_primitives = list (get_transform_primitives ().values ())
59
61
all_aggregation_primitives = list (get_aggregation_primitives ().values ())
60
62
applicable_transforms = find_stackable_primitives (all_transform_primitives ,
Original file line number Diff line number Diff line change 1
1
flake8>=3.7.0
2
2
autopep8>=1.4.3
3
- isort< 5.0.0
3
+ isort>= 5.0.5
4
4
pytest>=4.4.1
You can’t perform that action at this time.
0 commit comments