| Message ID | 20260127160508.3392732-9-rob.woolley@windriver.com |
|---|---|
| State | Accepted, archived |
| Commit | 6c293b4a02c9f4d9f6b42ca700eaa45b4b50d77a |
| Headers | show |
| Series | Package bitbake-setup for PyPI | expand |
diff --git a/bin/bitbake-setup b/bin/bitbake-setup index e3e577e9..d19b5394 100755 --- a/bin/bitbake-setup +++ b/bin/bitbake-setup @@ -957,7 +957,7 @@ def merge_settings(builtin_settings, global_settings, topdir_settings, cmdline_s return all_settings def sigint_handler(sig, frame, func, top_dir): - logger.plain(f'\nShutting down...') + logger.plain('\nShutting down...') if isinstance(top_dir, str) and os.path.exists(top_dir): if func in [init_config, build_update]: logger.warning(f'{top_dir} may contain an incomplete setup!')
The ruff lint tool reported an f-string that didn't include any placeholders: F541 f-string without any placeholders Signed-off-by: Rob Woolley <rob.woolley@windriver.com> --- bin/bitbake-setup | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)