From a28d5467954572767389729691e497d4da44b16e Mon Sep 17 00:00:00 2001 From: Eli Schwartz Date: Wed, 26 Jan 2022 01:51:28 -0500 Subject: [PATCH] flake8: fix wonky comment style --- mesonbuild/backend/xcodebackend.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mesonbuild/backend/xcodebackend.py b/mesonbuild/backend/xcodebackend.py index ec7a01435..64a49ba4c 100644 --- a/mesonbuild/backend/xcodebackend.py +++ b/mesonbuild/backend/xcodebackend.py @@ -1319,7 +1319,7 @@ class XCodeBackend(backends.Backend): for t in self.custom_targets: idval = self.pbx_custom_dep_map[t] - targets.append((idval, self.custom_aggregate_targets[t], t, None))#self.containerproxy_map[t])) + targets.append((idval, self.custom_aggregate_targets[t], t, None)) # self.containerproxy_map[t])) # Sort object by ID sorted_targets = sorted(targets, key=operator.itemgetter(0))