diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-05-22 09:26:42 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-05-22 09:26:42 +0200 |
commit | c40c89f94cc8a6dced2b14f51aa2e87b02b7ee22 (patch) | |
tree | 8d52a7b8716376aab4a7cb2aaa0d68a7518ec6cc /platform/linuxbsd | |
parent | e34b97312e91606dae2e26064dcd628dc360dc88 (diff) | |
parent | d9f8ef68df1df8cf88d484fc22995f55a9c3f9aa (diff) | |
download | redot-engine-c40c89f94cc8a6dced2b14f51aa2e87b02b7ee22.tar.gz |
Merge pull request #90457 from Chubercik/ruff-formatter
Replace `black` formatter with `ruff`
Diffstat (limited to 'platform/linuxbsd')
-rw-r--r-- | platform/linuxbsd/detect.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/platform/linuxbsd/detect.py b/platform/linuxbsd/detect.py index 47f3bcadc9..28825038ca 100644 --- a/platform/linuxbsd/detect.py +++ b/platform/linuxbsd/detect.py @@ -1,11 +1,11 @@ import os import platform import sys -from methods import print_warning, print_error, get_compiler_version, using_gcc -from platform_methods import detect_arch - from typing import TYPE_CHECKING +from methods import get_compiler_version, print_error, print_warning, using_gcc +from platform_methods import detect_arch + if TYPE_CHECKING: from SCons.Script.SConscript import SConsEnvironment |