Skip to content

Commit 5467152

Browse files
committed
Re-order imports to match upstream.
1 parent 2dfe221 commit 5467152

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/backports/configparser/__init__.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -138,17 +138,16 @@
138138
between keys and values are surrounded by spaces.
139139
"""
140140

141+
from collections.abc import MutableMapping
142+
from collections import ChainMap as _ChainMap
141143
import functools
144+
from .compat import io
142145
import itertools
143146
import os
144147
import re
145148
import sys
146149
import warnings
147-
from collections import OrderedDict as _default_dict
148-
from collections import ChainMap as _ChainMap
149-
from collections.abc import MutableMapping
150150

151-
from .compat import io
152151

153152
__all__ = [
154153
"NoSectionError",
@@ -174,6 +173,7 @@
174173
"MAX_INTERPOLATION_DEPTH",
175174
]
176175

176+
from collections import OrderedDict as _default_dict
177177
DEFAULTSECT = "DEFAULT"
178178

179179
MAX_INTERPOLATION_DEPTH = 10

0 commit comments

Comments
 (0)