Skip to content

Commit 7137354

Browse files
committed
Fix formatting
1 parent 40f15fa commit 7137354

File tree

1 file changed

+13
-9
lines changed

1 file changed

+13
-9
lines changed

setup.py

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,19 @@ def run(self):
2323
try:
2424
self.run_command("build_cmake")
2525
except DistutilsModuleError:
26-
warn("scikit-build-core not installed, CMake will not be invoked automatically. "
27-
"Please install scikit-build-core or run CMake manually to build extensions.")
26+
warn(
27+
"scikit-build-core not installed, CMake will not be invoked automatically. "
28+
"Please install scikit-build-core or run CMake manually to build extensions."
29+
)
2830
super().run()
2931

3032

31-
setup(version="0.47.0.dev0",
32-
packages=find_packages(),
33-
distclass=BinaryDistribution,
34-
cmake_source_dir=".",
35-
cmdclass={
36-
"build_py": ExtBuildPy,
37-
})
33+
setup(
34+
version="0.47.0.dev0",
35+
packages=find_packages(),
36+
distclass=BinaryDistribution,
37+
cmake_source_dir=".",
38+
cmdclass={
39+
"build_py": ExtBuildPy,
40+
},
41+
)

0 commit comments

Comments
 (0)