Skip to content

Commit c2e7862

Browse files
committed
Remove use of six.iterkeys
1 parent 5a42d0a commit c2e7862

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

bpython/config.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
import sys
33
import locale
44
from itertools import chain
5-
from six import iterkeys
65
from configparser import ConfigParser
76

87
from .autocomplete import SIMPLE as default_completion, ALL_MODES
@@ -43,7 +42,7 @@ def default_config_path():
4342

4443

4544
def fill_config_with_default_values(config, default_values):
46-
for section in iterkeys(default_values):
45+
for section in default_values.keys():
4746
if not config.has_section(section):
4847
config.add_section(section)
4948

0 commit comments

Comments
 (0)