From 0a718d863ecc0d51f1a1479689f14fbecd178fca Mon Sep 17 00:00:00 2001 From: Tristan Van Berkom Date: Thu, 19 Apr 2018 15:38:09 +0900 Subject: buildstream/sandbox/_mount.py: Fixing unused variables --- buildstream/sandbox/_mount.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'buildstream/sandbox') diff --git a/buildstream/sandbox/_mount.py b/buildstream/sandbox/_mount.py index 062082f3b..84ab30ada 100644 --- a/buildstream/sandbox/_mount.py +++ b/buildstream/sandbox/_mount.py @@ -138,6 +138,6 @@ class MountMap(): @contextmanager def mounted(self, sandbox): with ExitStack() as stack: - for mountpoint, mount in self.mounts.items(): + for _, mount in self.mounts.items(): stack.enter_context(mount.mounted(sandbox)) yield -- cgit v1.2.1