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 5f36ae9 commit 9846918Copy full SHA for 9846918
debian/scripts/misc/kconfig/annotations.py
@@ -446,7 +446,7 @@ def save(self, fname: str):
446
447
# Write out the policy (and note) line(s)
448
val = dict(sorted(new_val["policy"].items()))
449
- line = f"{conf : <47} policy<{val}>"
+ line = f"{conf: <47} policy<{val}>"
450
if "note" in new_val:
451
val = new_val["note"]
452
if new_val.get("oneline", False):
@@ -455,7 +455,7 @@ def save(self, fname: str):
455
else:
456
# Separate policy and note lines,
457
# followed by an empty line
458
- line += f"\n{conf : <47} note<{val}>\n"
+ line += f"\n{conf: <47} note<{val}>\n"
459
elif not marker:
460
# Write out a marker indicating the start of annotations
461
# without notes
0 commit comments