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>2017-03-25 03:07:05 +0300
committerCampbell Barton <ideasman42@gmail.com>2017-03-25 03:07:48 +0300
commit7cb2974182173f4a48b89d4bdbc6a6aa9c9c50fd (patch)
treed8b1506106a69a128168c464df73aec32e6fa376 /release/scripts/startup/bl_operators/mesh.py
parenta6f74453b67b9c1993d0f0619a2a7b2364c4de3e (diff)
Cleanup: imports, indentation, long lines
Diffstat (limited to 'release/scripts/startup/bl_operators/mesh.py')
-rw-r--r--release/scripts/startup/bl_operators/mesh.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/release/scripts/startup/bl_operators/mesh.py b/release/scripts/startup/bl_operators/mesh.py
index bce38a6bf3a..4edefd7bf9b 100644
--- a/release/scripts/startup/bl_operators/mesh.py
+++ b/release/scripts/startup/bl_operators/mesh.py
@@ -21,7 +21,10 @@
import bpy
from bpy.types import Operator
-from bpy.props import EnumProperty, IntProperty
+from bpy.props import (
+ EnumProperty,
+ IntProperty,
+)
class MeshMirrorUV(Operator):
@@ -254,4 +257,4 @@ classes = (
MeshMirrorUV,
MeshSelectNext,
MeshSelectPrev,
-) \ No newline at end of file
+)