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 dec96ef commit 1916d28Copy full SHA for 1916d28
bpython/config.py
@@ -75,7 +75,9 @@ def default_editor() -> str:
75
return os.environ.get("VISUAL", os.environ.get("EDITOR", "vi"))
76
77
78
-def fill_config_with_default_values(config, default_values):
+def fill_config_with_default_values(
79
+ config: ConfigParser, default_values: Mapping[str, Mapping[str, Any]]
80
+) -> None:
81
for section in default_values.keys():
82
if not config.has_section(section):
83
config.add_section(section)
0 commit comments