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

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

View File

@@ -47,7 +47,7 @@ class ExportSomeData(bpy.types.Operator, ExportHelper):
@classmethod
def poll(cls, context):
return context.active_object != None
return context.active_object is not None
def execute(self, context):
return write_some_data(context, self.filepath, self.use_setting)