Skip to content

Commit e869828

Browse files
committed
Addressed list formatting to better match codebase conventions.
1 parent b0d19b6 commit e869828

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

setup.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,10 +156,13 @@ def cmake_install(self):
156156
multi_proc = '-j{}'.format(multiprocessing.cpu_count())
157157

158158
subprocess.check_call(
159-
['cmake', '--build', '.',
159+
[
160+
'cmake',
161+
'--build', '.',
160162
'--target', 'install',
161163
'--config', self.build_config,
162-
'--', multi_proc],
164+
'--', multi_proc,
165+
],
163166
cwd=self.build_temp_dir,
164167
env=os.environ.copy()
165168
)

0 commit comments

Comments
 (0)