We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a42d0a commit c2e7862Copy full SHA for c2e7862
bpython/config.py
@@ -2,7 +2,6 @@
2
import sys
3
import locale
4
from itertools import chain
5
-from six import iterkeys
6
from configparser import ConfigParser
7
8
from .autocomplete import SIMPLE as default_completion, ALL_MODES
@@ -43,7 +42,7 @@ def default_config_path():
43
42
44
45
def fill_config_with_default_values(config, default_values):
46
- for section in iterkeys(default_values):
+ for section in default_values.keys():
47
if not config.has_section(section):
48
config.add_section(section)
49
0 commit comments