From 3b6a8ee7a66193a8a6867eba9e1d2b70bdf04402 Mon Sep 17 00:00:00 2001 From: Jiawen Geng Date: Fri, 14 May 2021 03:10:36 +0000 Subject: [PATCH] fix: py lint --- pylib/gyp/xcodeproj_file.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pylib/gyp/xcodeproj_file.py b/pylib/gyp/xcodeproj_file.py index 2c087ba2..5863ef45 100644 --- a/pylib/gyp/xcodeproj_file.py +++ b/pylib/gyp/xcodeproj_file.py @@ -3122,7 +3122,8 @@ def CompareProducts(x, y, remote_products): product_group = ref_dict["ProductGroup"] product_group._properties["children"] = sorted( product_group._properties["children"], - key=cmp_to_key(lambda x, y, rp=remote_products: CompareProducts(x, y, rp)), + key=cmp_to_key( + lambda x, y, rp=remote_products: CompareProducts(x, y, rp)), )