summaryrefslogtreecommitdiffstats
path: root/misc
diff options
context:
space:
mode:
authorJakub Marcowski <chubercikbattle@gmail.com>2024-05-21 15:14:59 +0200
committerThaddeus Crews <repiteo@outlook.com>2024-05-21 18:02:29 -0500
commitd9f8ef68df1df8cf88d484fc22995f55a9c3f9aa (patch)
tree69f67b54e7fbb15be77877d5de8d3906fc41b882 /misc
parentaaa4560729bf0161deb71789b47eba5623893845 (diff)
downloadredot-engine-d9f8ef68df1df8cf88d484fc22995f55a9c3f9aa.tar.gz
Update pre-commit hooks configuration to use `ruff` instead of `black`
Diffstat (limited to 'misc')
-rwxr-xr-xmisc/scripts/install_d3d12_sdk_windows.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/misc/scripts/install_d3d12_sdk_windows.py b/misc/scripts/install_d3d12_sdk_windows.py
index aed80d81a4..d7574e6222 100755
--- a/misc/scripts/install_d3d12_sdk_windows.py
+++ b/misc/scripts/install_d3d12_sdk_windows.py
@@ -1,15 +1,15 @@
#!/usr/bin/env python
import os
-import urllib.request
import shutil
import subprocess
import sys
+import urllib.request
# Enable ANSI escape code support on Windows 10 and later (for colored console output).
# <https://github.com/python/cpython/issues/73245>
if sys.platform == "win32":
- from ctypes import windll, c_int, byref
+ from ctypes import byref, c_int, windll
stdout_handle = windll.kernel32.GetStdHandle(c_int(-11))
mode = c_int(0)