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 <ideasman42@gmail.com>2019-12-07 08:36:33 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-12-07 08:37:02 +0300
commit6a78ace569ec7c0e076e5af34d9496ce3363b81e (patch)
treef4d9e73f71bd1305864fcb9f9501c7590c61b1da /release/scripts/startup/bl_operators/wm.py
parent8b512414c5751c39d443c85d3dcb4820c14e3ba0 (diff)
Cleanup: remove unused arguments
Diffstat (limited to 'release/scripts/startup/bl_operators/wm.py')
-rw-r--r--release/scripts/startup/bl_operators/wm.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_operators/wm.py b/release/scripts/startup/bl_operators/wm.py
index 1452b6767b6..a677d9932b6 100644
--- a/release/scripts/startup/bl_operators/wm.py
+++ b/release/scripts/startup/bl_operators/wm.py
@@ -1816,7 +1816,7 @@ class WM_OT_toolbar_fallback_pie(Operator):
# It's possible we don't have the fallback tool available.
# This can happen in the image editor for example when there is no selection
# in painting modes.
- item, _ = cls._tool_get_by_id(context, space_type, cls.tool_fallback_id)
+ item, _ = cls._tool_get_by_id(context, cls.tool_fallback_id)
if item is None:
print("Tool", cls.tool_fallback_id, "not active in", cls)
return {'PASS_THROUGH'}