osmith submitted this change.
gen_makefile: fix f-string without placeholders
gen_makefile.py:604:17: F541 [*] f-string without any placeholders
Change-Id: I77b38247fb38136f77f89d40669b2df378dca192
---
M gen_makefile.py
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gen_makefile.py b/gen_makefile.py
index 18af686..7d73df8 100755
--- a/gen_makefile.py
+++ b/gen_makefile.py
@@ -601,7 +601,7 @@
ldconfig_without_sudo=' \\\n\t\t--ldconfig-without-sudo' if args.ldconfig_without_sudo else '',
make_check='' if args.make_check else " \\\n\t\t--no-make-check",
docker_cmd=f' \\\n\t\t--docker-cmd "{args.docker_cmd}"' if args.docker_cmd else '',
- build_debug=f' \\\n\t\t--build-debug' if args.build_debug else '',
+ build_debug=' \\\n\t\t--build-debug' if args.build_debug else '',
auto_distclean=' \\\n\t\t--auto-distclean' if args.auto_distclean else '',
)
To view, visit change 39401. To unsubscribe, or for help writing mail filters, visit settings.