Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'release/scripts/startup/bl_ui/space_topbar.py')
-rw-r--r--release/scripts/startup/bl_ui/space_topbar.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/scripts/startup/bl_ui/space_topbar.py b/release/scripts/startup/bl_ui/space_topbar.py
index 45460a1a5de..7219922c379 100644
--- a/release/scripts/startup/bl_ui/space_topbar.py
+++ b/release/scripts/startup/bl_ui/space_topbar.py
@@ -244,7 +244,7 @@ class TOPBAR_MT_app(Menu):
class TOPBAR_MT_file_cleanup(Menu):
bl_label = "Clean Up"
- def draw(self, context):
+ def draw(self, _context):
layout = self.layout
layout.separator()
@@ -475,7 +475,7 @@ class TOPBAR_MT_file_export(Menu):
bl_label = "Export"
bl_owner_use_filter = False
- def draw(self, context):
+ def draw(self, _context):
if bpy.app.build_options.collada:
self.layout.operator("wm.collada_export",
text="Collada (Default) (.dae)")