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:
authorCampbell Barton <campbell@blender.org>2022-01-07 06:39:01 +0300
committerCampbell Barton <campbell@blender.org>2022-01-07 06:47:27 +0300
commit2cd8238ce3394aa3cf89c4d8c17c71757dd61a08 (patch)
tree58d73870c313e1c3b724b8e60b41ba08be85a039 /release/scripts/startup/bl_ui/space_sequencer.py
parentf48164b5ea7f41d639e511aee5d336657ebf3106 (diff)
Cleanup: use static sets for comparison, quiet unused arg warnings
Diffstat (limited to 'release/scripts/startup/bl_ui/space_sequencer.py')
-rw-r--r--release/scripts/startup/bl_ui/space_sequencer.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/release/scripts/startup/bl_ui/space_sequencer.py b/release/scripts/startup/bl_ui/space_sequencer.py
index a2ec5075a4d..6035170f9df 100644
--- a/release/scripts/startup/bl_ui/space_sequencer.py
+++ b/release/scripts/startup/bl_ui/space_sequencer.py
@@ -1162,7 +1162,7 @@ class SEQUENCER_MT_pivot_pie(Menu):
class SEQUENCER_MT_view_pie(Menu):
bl_label = "View"
- def draw(self, context):
+ def draw(self, _context):
layout = self.layout
pie = layout.menu_pie()
@@ -1173,7 +1173,7 @@ class SEQUENCER_MT_view_pie(Menu):
class SEQUENCER_MT_preview_view_pie(Menu):
bl_label = "View"
- def draw(self, context):
+ def draw(self, _context):
layout = self.layout
pie = layout.menu_pie()
@@ -1229,7 +1229,7 @@ class SEQUENCER_PT_color_tag_picker(SequencerColorTagPicker, Panel):
bl_category = "Strip"
bl_options = {'HIDE_HEADER', 'INSTANCED'}
- def draw(self, context):
+ def draw(self, _context):
layout = self.layout
row = layout.row(align=True)
@@ -1242,7 +1242,7 @@ class SEQUENCER_PT_color_tag_picker(SequencerColorTagPicker, Panel):
class SEQUENCER_MT_color_tag_picker(SequencerColorTagPicker, Menu):
bl_label = "Set Color Tag"
- def draw(self, context):
+ def draw(self, _context):
layout = self.layout
row = layout.row(align=True)