pep8 edits and change '!= None' to 'is not None'

This commit is contained in:
Campbell Barton
2011-08-22 09:01:49 +00:00
parent aa7545b0ea
commit 1324173e99
11 changed files with 26 additions and 26 deletions

View File

@@ -13,7 +13,7 @@ class SimpleOperator(bpy.types.Operator):
@classmethod
def poll(cls, context):
return context.active_object != None
return context.active_object is not None
def execute(self, context):
main(context)