Skip to content

Commit

Permalink
Re-order imports to match upstream.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Nov 4, 2021
1 parent 2dfe221 commit 5467152
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/backports/configparser/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,17 +138,16 @@
between keys and values are surrounded by spaces.
"""

from collections.abc import MutableMapping
from collections import ChainMap as _ChainMap
import functools
from .compat import io
import itertools
import os
import re
import sys
import warnings
from collections import OrderedDict as _default_dict
from collections import ChainMap as _ChainMap
from collections.abc import MutableMapping

from .compat import io

__all__ = [
"NoSectionError",
Expand All @@ -174,6 +173,7 @@
"MAX_INTERPOLATION_DEPTH",
]

from collections import OrderedDict as _default_dict
DEFAULTSECT = "DEFAULT"

MAX_INTERPOLATION_DEPTH = 10
Expand Down

0 comments on commit 5467152

Please sign in to comment.