Skip to content

Commit a34f77f

Browse files
committed
USe str instead of f-string
1 parent 93b1cdc commit a34f77f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bpython/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def fill_config_with_default_values(config, default_values):
8787

8888
for (opt, val) in default_values[section].items():
8989
if not config.has_option(section, opt):
90-
config.set(section, opt, f"{val}")
90+
config.set(section, opt, str(val))
9191

9292

9393
def loadini(struct, config_path):

0 commit comments

Comments
 (0)