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: