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

@@ -426,7 +426,7 @@ def ngon_tesselate(from_data, indices, fix_loops=True):
# See if its flipped the wrong way.
flip = None
for fi in fill:
if flip != None:
if flip is not None:
break
for i, vi in enumerate(fi):
if vi == 0 and fi[i - 1] == 1: