Skip to content

Commit bf8a9bf

Browse files
committed
fix formatting
1 parent 37fa012 commit bf8a9bf

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,9 @@ def run(self):
124124
log.info(f"> Installing rollup, react, and react-dom")
125125
subprocess.run(f"{npm} install rollup".split(), cwd=js_dir, check=True)
126126
subprocess.run(f"{npm} install react".split(), cwd=js_dir, check=True)
127-
subprocess.run(f"{npm} install react-dom".split(), cwd=js_dir, check=True)
127+
subprocess.run(
128+
f"{npm} install react-dom".split(), cwd=js_dir, check=True
129+
)
128130

129131
for args in (f"{npm} install", f"{npm} run build"):
130132
args_list = args.split()

0 commit comments

Comments
 (0)