pep8 edits and fix some warnings

This commit is contained in:
2009-12-05 22:03:07 +00:00
parent 8821f7d7ea
commit 5ebe54f470
18 changed files with 562 additions and 532 deletions

View File

@@ -16,6 +16,8 @@
#
# ##### END GPL LICENSE BLOCK #####
# <pep8 compliant>
import bpy
from bpy.props import *
@@ -61,11 +63,11 @@ class SelectPattern(bpy.types.Operator):
wm = context.manager
wm.invoke_props_popup(self, event)
return ('RUNNING_MODAL',)
def draw(self, context):
layout = self.layout
props = self.properties
layout.prop(props, "pattern")
row = layout.row()
row.prop(props, "case_sensitive")