]> git.tdb.fi Git - libs/gl.git/blobdiff - blender/io_mspgl/properties.py
Remove extraneous semicolons from Python code
[libs/gl.git] / blender / io_mspgl / properties.py
index 39911b85511a16b7df387b93ab9255393743fe36..1a158598a37619c0207ba51fa6f6098ec982ba98 100644 (file)
@@ -43,12 +43,12 @@ class MspGLObjectProperties(bpy.types.Panel):
        def draw(self, context):
                obj = context.active_object
 
-               self.layout.prop(obj, "technique");
-               self.layout.prop(obj, "inherit_tech");
+               self.layout.prop(obj, "technique")
+               self.layout.prop(obj, "inherit_tech")
                if obj.inherit_tech:
-                       self.layout.prop(obj, "override_material");
+                       self.layout.prop(obj, "override_material")
                self.layout.prop(obj, "material_tex")
-               self.layout.prop(obj, "compound");
+               self.layout.prop(obj, "compound")
                self.layout.prop(obj, "lod_for_parent")
                if obj.lod_for_parent:
                        self.layout.prop(obj, "lod_index")
@@ -70,9 +70,9 @@ class MspGLMaterialProperties(bpy.types.Panel):
                        return
 
                self.layout.prop(mat, "srgb_colors")
-               self.layout.prop(mat, "array_atlas");
+               self.layout.prop(mat, "array_atlas")
                if mat.array_atlas:
-                       self.layout.prop(mat, "array_layer");
+                       self.layout.prop(mat, "array_layer")
 
 def register_properties():
        bpy.types.Mesh.winding_test = bpy.props.BoolProperty(name="Winding test", description="Perform winding test to skip back faces")