summaryrefslogtreecommitdiffstats
path: root/platform/ios/detect.py
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2024-05-22 09:26:42 +0200
committerRémi Verschelde <rverschelde@gmail.com>2024-05-22 09:26:42 +0200
commitc40c89f94cc8a6dced2b14f51aa2e87b02b7ee22 (patch)
tree8d52a7b8716376aab4a7cb2aaa0d68a7518ec6cc /platform/ios/detect.py
parente34b97312e91606dae2e26064dcd628dc360dc88 (diff)
parentd9f8ef68df1df8cf88d484fc22995f55a9c3f9aa (diff)
downloadredot-engine-c40c89f94cc8a6dced2b14f51aa2e87b02b7ee22.tar.gz
Merge pull request #90457 from Chubercik/ruff-formatter
Replace `black` formatter with `ruff`
Diffstat (limited to 'platform/ios/detect.py')
-rw-r--r--platform/ios/detect.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/ios/detect.py b/platform/ios/detect.py
index e3bac4ec5c..eb233a5d54 100644
--- a/platform/ios/detect.py
+++ b/platform/ios/detect.py
@@ -1,9 +1,9 @@
import os
import sys
-from methods import print_error, detect_darwin_sdk_path
-
from typing import TYPE_CHECKING
+from methods import detect_darwin_sdk_path, print_error
+
if TYPE_CHECKING:
from SCons.Script.SConscript import SConsEnvironment