Skip to content

Commit

Permalink
Merge pull request #1272 from Surgo/develop
Browse files Browse the repository at this point in the history
Remove not_skip. Fixes: #1271
  • Loading branch information
timothycrosley authored Jul 6, 2020
2 parents ac0acb3 + 0f78962 commit cd7604c
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion docs/configuration/profiles.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ To use any of the listed profiles, use `isort --profile PROFILE_NAME` from the c
- **lines_after_imports**: `2`
- **lines_between_types**: `1`
- **multi_line_output**: `3`
- **not_skip**: `'__init__.py'`
- **use_parentheses**: `True`

#hug
Expand Down
1 change: 0 additions & 1 deletion isort/profiles.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@
"lines_after_imports": 2,
"lines_between_types": 1,
"multi_line_output": 3,
"not_skip": "__init__.py",
"use_parentheses": True,
}
hug = {
Expand Down
1 change: 0 additions & 1 deletion tests/test_isort.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@
ignore_frosted_errors = E103
skip = build,.tox,venv
balanced_wrapping = true
not_skip = __init__.py
"""
SHORT_IMPORT = "from third_party import lib1, lib2, lib3, lib4"
SINGLE_FROM_IMPORT = "from third_party import lib1"
Expand Down

0 comments on commit cd7604c

Please sign in to comment.