Skip to content

Commit

Permalink
Replace _default_dict with simple dict
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Nov 4, 2021
1 parent 5467152 commit 77efa8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backports/configparser/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@
"MAX_INTERPOLATION_DEPTH",
]

from collections import OrderedDict as _default_dict
_default_dict = dict
DEFAULTSECT = "DEFAULT"

MAX_INTERPOLATION_DEPTH = 10
Expand Down

0 comments on commit 77efa8a

Please sign in to comment.