浏览代码

pycodestyle

Fred Lefévère-Laoide 1 年之前
父节点
当前提交
433a3f7505
共有 1 个文件被更改,包括 3 次插入1 次删除
  1. 3 1
      tools/frontend/bundle_build.py

+ 3 - 1
tools/frontend/bundle_build.py

@@ -21,7 +21,9 @@ def build_gui(root_path: Path):
         print(f'Found taipy-gui frontend bundle in {root_path  / "taipy" / "gui" / "webapp"}.')
     else:
         subprocess.run(["npm", "ci"], cwd=root_path / "frontend" / "taipy-gui" / "dom", check=True, shell=True)
-        subprocess.run(["npm", "ci", "--omit=optional"], cwd=root_path / "frontend" / "taipy-gui", check=True, shell=True)
+        subprocess.run(
+            ["npm", "ci", "--omit=optional"], cwd=root_path / "frontend" / "taipy-gui", check=True, shell=True
+        )
         subprocess.run(["npm", "run", "build"], cwd=root_path / "frontend" / "taipy-gui", check=True, shell=True)