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_graph.py
parentf48164b5ea7f41d639e511aee5d336657ebf3106 (diff)
Cleanup: use static sets for comparison, quiet unused arg warnings
Diffstat (limited to 'release/scripts/startup/bl_ui/space_graph.py')
-rw-r--r--release/scripts/startup/bl_ui/space_graph.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/scripts/startup/bl_ui/space_graph.py b/release/scripts/startup/bl_ui/space_graph.py
index 3a668f61539..a9f2b9e9a36 100644
--- a/release/scripts/startup/bl_ui/space_graph.py
+++ b/release/scripts/startup/bl_ui/space_graph.py
@@ -344,7 +344,7 @@ class GRAPH_MT_slider(Menu):
def draw(self, _context):
layout = self.layout
-
+
layout.operator("graph.breakdown", text="Breakdown")
layout.operator("graph.blend_to_neighbor", text="Blend To Neighbor")
@@ -352,7 +352,7 @@ class GRAPH_MT_slider(Menu):
class GRAPH_MT_view_pie(Menu):
bl_label = "View"
- def draw(self, context):
+ def draw(self, _context):
layout = self.layout
pie = layout.menu_pie()