From 96ff40859dd888ea9921cff8494675a2b441046c Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sun, 15 Sep 2019 05:26:15 +1000 Subject: Cleanup: quiet unused arg warning --- release/scripts/startup/bl_ui/space_info.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'release/scripts/startup/bl_ui/space_info.py') diff --git a/release/scripts/startup/bl_ui/space_info.py b/release/scripts/startup/bl_ui/space_info.py index b7b0326106e..82ed701aa4c 100644 --- a/release/scripts/startup/bl_ui/space_info.py +++ b/release/scripts/startup/bl_ui/space_info.py @@ -34,7 +34,7 @@ class INFO_MT_editor_menus(Menu): bl_idname = "INFO_MT_editor_menus" bl_label = "" - def draw(self, context): + def draw(self, _context): layout = self.layout layout.menu("INFO_MT_view") layout.menu("INFO_MT_info") @@ -43,7 +43,7 @@ class INFO_MT_editor_menus(Menu): class INFO_MT_view(Menu): bl_label = "View" - def draw(self, context): + def draw(self, _context): layout = self.layout layout.menu("INFO_MT_area") @@ -52,7 +52,7 @@ class INFO_MT_view(Menu): class INFO_MT_info(Menu): bl_label = "Info" - def draw(self, context): + def draw(self, _context): layout = self.layout layout.operator("info.select_all", text="Select All").action = 'SELECT' @@ -107,7 +107,7 @@ class INFO_MT_area(Menu): class INFO_MT_context_menu(Menu): bl_label = "Info Context Menu" - def draw(self, context): + def draw(self, _context): layout = self.layout layout.operator("info.report_copy", text="Copy") -- cgit v1.2.3