Skip to content

Commit 92a242e

Browse files
DenisScherbakovoleksandr-pavlyk
authored andcommitted
Fix precommit check
1 parent 5f81a21 commit 92a242e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
1515
# limitations under the License.
1616

1717
import glob
18+
import importlib.machinery as imm
1819
import os.path
1920
import pathlib
2021
import shutil
2122
import sys
22-
import importlib.machinery as imm
2323

2424
import skbuild
2525
import skbuild.setuptools_wrap
@@ -193,7 +193,7 @@ def _get_cmdclass():
193193
"coverage": ["Cython<3", "pytest", "pytest-cov", "coverage", "tomli"],
194194
},
195195
keywords="dpctl",
196-
classifiers=[_f for _f in CLASSIFIERS.split('\n') if _f],
196+
classifiers=[_f for _f in CLASSIFIERS.split("\n") if _f],
197197
platforms=["Linux", "Windows"],
198198
cmake_process_manifest_hook=cleanup_destination,
199199
)

0 commit comments

Comments
 (0)