Skip to content

Commit

Permalink
Set google profile not to order by type (#1486)
Browse files Browse the repository at this point in the history
  • Loading branch information
timothycrosley committed Sep 27, 2020
1 parent b808f50 commit 11ca48b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions isort/profiles.py
Expand Up @@ -21,6 +21,7 @@
"force_sort_within_sections": True,
"lexicographical": True,
"single_line_exclusions": ("typing",),
"order_by_type": False,
}
open_stack = {
"force_single_line": True,
Expand Down
4 changes: 2 additions & 2 deletions tests/unit/profiles/test_google.py
Expand Up @@ -118,8 +118,8 @@ def test_google_code_snippet_one():
# flake8: noqa: F401
import collections
from contextlib import ExitStack
from contextlib import contextmanager
from contextlib import ExitStack
import functools
import inspect
import itertools as it
Expand All @@ -136,8 +136,8 @@ def test_google_code_snippet_one():
from . import dtypes
from . import linear_util as lu
from .abstract_arrays import ConcreteArray
from .abstract_arrays import ShapedArray
from .abstract_arrays import raise_to_shaped
from .abstract_arrays import ShapedArray
from .api_util import apply_flat_fun
from .api_util import argnums_partial
from .api_util import donation_vector
Expand Down

0 comments on commit 11ca48b

Please sign in to comment.