diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-08-22 00:53:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-22 00:53:52 +0200 |
commit | 2ba96f0dd9ed1cc218b464b0964138c51591dded (patch) | |
tree | 8546a19e293fc663c6f7c3e8cce3f72e9c6f4d6a /platform/iphone | |
parent | 8c4f55663710af68304f3b84c86fe1fc1080784f (diff) | |
parent | 5f092cf7bb1c609bdb4c3ddfa48a56c0ed7eb5be (diff) |
Merge pull request #41428 from madmiraal/fix-python-style
Fix new black style check failures in various files.
Diffstat (limited to 'platform/iphone')
-rw-r--r-- | platform/iphone/detect.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/platform/iphone/detect.py b/platform/iphone/detect.py index f4ef40a0ba..66579c1ad7 100644 --- a/platform/iphone/detect.py +++ b/platform/iphone/detect.py @@ -235,7 +235,10 @@ def configure(env): env.Append(CPPDEFINES=["ICLOUD_ENABLED"]) env.Prepend( - CPPPATH=["$IPHONESDK/usr/include", "$IPHONESDK/System/Library/Frameworks/AudioUnit.framework/Headers",] + CPPPATH=[ + "$IPHONESDK/usr/include", + "$IPHONESDK/System/Library/Frameworks/AudioUnit.framework/Headers", + ] ) env["ENV"]["CODESIGN_ALLOCATE"] = "/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/codesign_allocate" |