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-11-19 20:17:35 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-11-19 20:17:35 +0400
commitd9e99abe3753591d510dbb58813bbc29e3381b57 (patch)
tree85d247d274f8c9d2650f6df4d3c8a6ac2f25e7bc /release/scripts
parentddf207b7c3d1cafb0485da268608b1fc875c13f0 (diff)
hide overly picky warnings from 'pylint' for pep8 script, indentation edits.
Diffstat (limited to 'release/scripts')
-rw-r--r--release/scripts/modules/animsys_refactor.py2
-rw-r--r--release/scripts/startup/bl_ui/space_sequencer.py6
-rw-r--r--release/scripts/startup/bl_ui/space_view3d.py2
3 files changed, 5 insertions, 5 deletions
diff --git a/release/scripts/modules/animsys_refactor.py b/release/scripts/modules/animsys_refactor.py
index 64110b0f620..f97ba3c2a50 100644
--- a/release/scripts/modules/animsys_refactor.py
+++ b/release/scripts/modules/animsys_refactor.py
@@ -35,9 +35,9 @@ def drepr(string):
class DataPathBuilder(object):
- __slots__ = ("data_path", )
""" Dummy class used to parse fcurve and driver data paths.
"""
+ __slots__ = ("data_path", )
def __init__(self, attrs):
self.data_path = attrs
diff --git a/release/scripts/startup/bl_ui/space_sequencer.py b/release/scripts/startup/bl_ui/space_sequencer.py
index c1c9bc12b2d..06f481d2993 100644
--- a/release/scripts/startup/bl_ui/space_sequencer.py
+++ b/release/scripts/startup/bl_ui/space_sequencer.py
@@ -473,9 +473,9 @@ class SEQUENCER_PT_effect(SequencerButtonsPanel, Panel):
if strip.type == 'SPEED':
col.prop(strip, "multiply_speed")
elif strip.type in {'CROSS', 'GAMMA_CROSS', 'PLUGIN', 'WIPE'}:
- col.prop(strip, "use_default_fade", "Default fade")
- if not strip.use_default_fade:
- col.prop(strip, "effect_fader", text="Effect fader")
+ col.prop(strip, "use_default_fade", "Default fade")
+ if not strip.use_default_fade:
+ col.prop(strip, "effect_fader", text="Effect fader")
layout.prop(strip, "use_translation", text="Image Offset:")
if strip.use_translation:
diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index a2a4405f77a..15c04442142 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -525,7 +525,7 @@ class VIEW3D_MT_select_edit_mesh(Menu):
layout.operator("mesh.select_by_number_vertices", text="Triangles").type = 'TRIANGLES'
layout.operator("mesh.select_by_number_vertices", text="Quads").type = 'QUADS'
if context.scene.tool_settings.mesh_select_mode[2] == False:
- layout.operator("mesh.select_non_manifold", text="Non Manifold")
+ layout.operator("mesh.select_non_manifold", text="Non Manifold")
layout.operator("mesh.select_by_number_vertices", text="Loose Verts/Edges").type = 'OTHER'
layout.operator("mesh.select_similar", text="Similar")