From 60917c35e7baab550f30bf17f3a9bcb9961911c2 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 18 Dec 2015 22:27:03 +1100 Subject: Cleanup: use unpacking generalization --- release/scripts/modules/bpy_types.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'release') diff --git a/release/scripts/modules/bpy_types.py b/release/scripts/modules/bpy_types.py index 4f71cdf7588..1c08fc5e51f 100644 --- a/release/scripts/modules/bpy_types.py +++ b/release/scripts/modules/bpy_types.py @@ -34,8 +34,10 @@ class Context(StructRNA): def copy(self): from types import BuiltinMethodType new_context = {} - generic_attrs = (list(StructRNA.__dict__.keys()) + - ["bl_rna", "rna_type", "copy"]) + generic_attrs = ( + *StructRNA.__dict__.keys(), + "bl_rna", "rna_type", "copy", + ) for attr in dir(self): if not (attr.startswith("_") or attr in generic_attrs): value = getattr(self, attr) -- cgit v1.2.3