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>2011-07-10 16:51:37 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-07-10 16:51:37 +0400
commitb62a956cc8c9402880d249d0a70c880af5813bc3 (patch)
treed1b8911349d5bb607278ce2267fefcf9ce998021 /release/scripts/modules/rna_prop_ui.py
parent7370ba1839973010dd6e0ed0349c34477d8ece0a (diff)
cleanup for python scripts - unused vars and imports
Diffstat (limited to 'release/scripts/modules/rna_prop_ui.py')
-rw-r--r--release/scripts/modules/rna_prop_ui.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/modules/rna_prop_ui.py b/release/scripts/modules/rna_prop_ui.py
index b0fb3b66d0a..388ae2b0e13 100644
--- a/release/scripts/modules/rna_prop_ui.py
+++ b/release/scripts/modules/rna_prop_ui.py
@@ -114,7 +114,7 @@ def draw(layout, context, context_member, property_type, use_edit=True):
to_dict = getattr(val, "to_dict", None)
to_list = getattr(val, "to_list", None)
- val_orig = val
+ # val_orig = val # UNUSED
if to_dict:
val = to_dict()
val_draw = str(val)