Przeglądaj źródła

fix the makefile snippet so flake8 and yapf don't fight (#12849)

Zach White 4 lat temu
rodzic
commit
5c924efa04
1 zmienionych plików z 3 dodań i 3 usunięć
  1. 3 3
      lib/python/qmk/cli/multibuild.py

+ 3 - 3
lib/python/qmk/cli/multibuild.py

@@ -57,6 +57,7 @@ def multibuild(cli):
     with open(makefile, "w") as f:
     with open(makefile, "w") as f:
         for keyboard_name in keyboard_list:
         for keyboard_name in keyboard_list:
             keyboard_safe = keyboard_name.replace('/', '_')
             keyboard_safe = keyboard_name.replace('/', '_')
+            # yapf: disable
             f.write(
             f.write(
                 f"""\
                 f"""\
 all: {keyboard_safe}_binary
 all: {keyboard_safe}_binary
@@ -70,9 +71,8 @@ all: {keyboard_safe}_binary
 		|| printf "Build %-64s \e[1;32m[OK]\e[0m\\n" "{keyboard_name}:default"
 		|| printf "Build %-64s \e[1;32m[OK]\e[0m\\n" "{keyboard_name}:default"
 	@rm -f "{QMK_FIRMWARE}/.build/build.log.{keyboard_safe}" || true
 	@rm -f "{QMK_FIRMWARE}/.build/build.log.{keyboard_safe}" || true
 
 
-"""
-
-                # noqa: yapf should not care about the formatting of the Makefile
+"""# noqa
             )
             )
+            # yapf: enable
 
 
     cli.run([make_cmd, '-j', str(cli.args.parallel), '-f', makefile, 'all'], capture_output=False, text=False)
     cli.run([make_cmd, '-j', str(cli.args.parallel), '-f', makefile, 'all'], capture_output=False, text=False)