From 0b93328aebc7e4cd98dda6d226db6028fc10f312 Mon Sep 17 00:00:00 2001 From: Thomas-Karl Pietrowski Date: Tue, 15 Mar 2016 12:52:29 +0100 Subject: [PATCH] Using PyDev compatible tags --- plugins/LayerView/LayerView.py | 2 +- plugins/RemovableDriveOutputDevice/OSXRemovableDrivePlugin.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/LayerView/LayerView.py b/plugins/LayerView/LayerView.py index eb9c3bc91e..97a2a0ab30 100644 --- a/plugins/LayerView/LayerView.py +++ b/plugins/LayerView/LayerView.py @@ -136,7 +136,7 @@ class LayerView(View): def calculateMaxLayers(self): scene = self.getController().getScene() - renderer = self.getRenderer() # TODO: Unused variable + renderer = self.getRenderer() # TODO: @UnusedVariable self._activity = True self._old_max_layers = self._max_layers diff --git a/plugins/RemovableDriveOutputDevice/OSXRemovableDrivePlugin.py b/plugins/RemovableDriveOutputDevice/OSXRemovableDrivePlugin.py index 4b65ce024d..cee4f40430 100644 --- a/plugins/RemovableDriveOutputDevice/OSXRemovableDrivePlugin.py +++ b/plugins/RemovableDriveOutputDevice/OSXRemovableDrivePlugin.py @@ -58,7 +58,7 @@ class OSXRemovableDrivePlugin(RemovableDrivePlugin.RemovableDrivePlugin): if type(t) is dict: if "_name" in t and t["_name"] == n: ret.append(t) - for k, v in t.items(): + for k, v in t.items(): # TODO: @UnusedVariable "k" ret += self._findInTree(v, n) if type(t) is list: for v in t: