Skip to content
Snippets Groups Projects

Use format string rather than f string in bootstrap.py

Merged Samuel GAIST requested to merge 59_fix_use_of_f_string into master
1 file
+ 3
1
Compare changes
  • Side-by-side
  • Inline
+ 3
1
@@ -338,7 +338,9 @@ def get_channels(public, stable, server, intranet, group):
channels_dict["private/stable"] = channels[-1]
upload_channel = channels_dict[
f"{'public' if public else 'private'}/{'stable' if stable else 'beta'}"
"{}/{}".format(
"public" if public else "private", "stable" if stable else "beta"
)
]
return channels, upload_channel
Loading