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:
Diffstat (limited to 'release/scripts/op/io_mesh_ply/import_ply.py')
-rw-r--r--release/scripts/op/io_mesh_ply/import_ply.py13
1 files changed, 10 insertions, 3 deletions
diff --git a/release/scripts/op/io_mesh_ply/import_ply.py b/release/scripts/op/io_mesh_ply/import_ply.py
index 41d13b310a1..6de90b1e86e 100644
--- a/release/scripts/op/io_mesh_ply/import_ply.py
+++ b/release/scripts/op/io_mesh_ply/import_ply.py
@@ -23,7 +23,10 @@ import struct
class element_spec(object):
- __slots__ = 'name', 'count', 'properties'
+ __slots__ = ("name",
+ "count",
+ "properties",
+ )
def __init__(self, name, count):
self.name = name
@@ -43,7 +46,10 @@ class element_spec(object):
class property_spec(object):
- __slots__ = 'name', 'list_type', 'numeric_type'
+ __slots__ = ("name",
+ "list_type",
+ "numeric_type",
+ )
def __init__(self, name, list_type, numeric_type):
self.name = name
@@ -96,7 +102,8 @@ class property_spec(object):
class object_spec(object):
- __slots__ = 'specs'
+ __slots__ = ("specs",
+ )
'A list of element_specs'
def __init__(self):
self.specs = []