Skip to content

Commit e3dc192

Browse files
committed
Organize imports
1 parent 4d5fdf2 commit e3dc192

3 files changed

Lines changed: 8 additions & 7 deletions

File tree

dpath/segments.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
from copy import deepcopy
2-
from dpath.exceptions import InvalidGlob, InvalidKeyName, PathNotFound
3-
from dpath import options
42
from fnmatch import fnmatchcase
53

4+
from dpath import options
5+
from dpath.exceptions import InvalidGlob, InvalidKeyName, PathNotFound
6+
67

78
def kvs(node):
89
"""

dpath/util.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
from collections.abc import MutableMapping
2-
from collections.abc import MutableSequence
1+
from collections.abc import MutableMapping, MutableSequence
2+
3+
import dpath.segments
34
from dpath import options
45
from dpath.exceptions import InvalidKeyName
5-
import dpath.segments
66

77
_DEFAULT_SENTINAL = object()
88
MERGE_REPLACE = (1 << 1)

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
from distutils.core import setup
2-
import dpath.version
31
import os
2+
from distutils.core import setup
43

4+
import dpath.version
55

66
long_description = open(
77
os.path.join(

0 commit comments

Comments
 (0)