diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2022-04-05 17:43:12 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2022-04-05 17:43:12 +0200 |
commit | 77843355a04361c4a770f870e9406d4a748fb0ca (patch) | |
tree | b856c730dbf09560d464dd1dc16328e6bbaa11a4 /platform/linuxbsd/detect.py | |
parent | 9caba190955cb9687074a1a176ee0947084d031e (diff) | |
download | redot-engine-77843355a04361c4a770f870e9406d4a748fb0ca.tar.gz |
CI: Update black formatter and apply changes
Diffstat (limited to 'platform/linuxbsd/detect.py')
-rw-r--r-- | platform/linuxbsd/detect.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/linuxbsd/detect.py b/platform/linuxbsd/detect.py index f3a6004356..39f9b99108 100644 --- a/platform/linuxbsd/detect.py +++ b/platform/linuxbsd/detect.py @@ -115,7 +115,7 @@ def configure(env): ## Architecture - is64 = sys.maxsize > 2 ** 32 + is64 = sys.maxsize > 2**32 if env["bits"] == "default": env["bits"] = "64" if is64 else "32" |