Skip to content

Commit e175eb2

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 021caea commit e175eb2

1 file changed

Lines changed: 3 additions & 6 deletions

File tree

src/seabreeze/os_setup.py

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
44
author: Andreas Poehlmann
55
"""
6+
67
import argparse
78
import ctypes
89
import logging
@@ -206,15 +207,11 @@ def windows_install_drivers():
206207
cmd = [pnputil, "-i", "-a", os.path.join(tmp_dir, "*.inf")]
207208
return_code = subprocess.call(cmd, shell=True)
208209

209-
_log.warning(
210-
dedent(
211-
"""\
210+
_log.warning(dedent("""\
212211
Note: Some of the drivers currently don't have valid signatures.
213212
Look at the output above. If the spectrometer you want to use only
214213
provides an unsigned driver, you might have to install it manually.
215-
If you encounter this issue, please report it on github."""
216-
)
217-
)
214+
If you encounter this issue, please report it on github."""))
218215

219216
if return_code == 0:
220217
_log.info("Success")

0 commit comments

Comments
 (0)