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

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2019-06-22 06:52:05 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-06-22 06:52:05 +0300
commita1f74409ea3003a3eedb4d613336953a546c2397 (patch)
tree2ab50659327f18612a66f2c068b833c0831f45d9 /object_carver
parentf148c5613d166b0b7c63542417631d9807e61cb1 (diff)
Cleanup: redundant set/tuple use for comparison
Diffstat (limited to 'object_carver')
-rw-r--r--object_carver/carver_operator.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/object_carver/carver_operator.py b/object_carver/carver_operator.py
index cfedffe3..c75a5ab7 100644
--- a/object_carver/carver_operator.py
+++ b/object_carver/carver_operator.py
@@ -210,7 +210,7 @@ class CARVER_OT_operator(bpy.types.Operator):
self.check_region(context,event)
for area in win.screen.areas:
- if area.type in ('VIEW_3D'):
+ if area.type == 'VIEW_3D':
for region in area.regions:
if not region_types or region.type in region_types:
region.tag_redraw()