diff options
author | Eli Schwartz <eschwartz@archlinux.org> | 2022-01-26 01:51:28 -0500 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2022-01-27 10:48:01 -0800 |
commit | a28d5467954572767389729691e497d4da44b16e (patch) | |
tree | 8eb8d9cbc7192e417e1c05b836559547c26a2626 | |
parent | cf3a1d31f8583cdc14929e928acf90ac42eb2322 (diff) | |
download | meson-a28d5467954572767389729691e497d4da44b16e.zip meson-a28d5467954572767389729691e497d4da44b16e.tar.gz meson-a28d5467954572767389729691e497d4da44b16e.tar.bz2 |
flake8: fix wonky comment style
-rw-r--r-- | mesonbuild/backend/xcodebackend.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/backend/xcodebackend.py b/mesonbuild/backend/xcodebackend.py index ec7a014..64a49ba 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)) |