Cleanup: various minor changes

- Add missing doxy-section for Apply Parent Inverse Operator
- Use identity for None comparison in Python.
- Remove newline from operator doc-strings.
- Use '*' prefix multi-line C comment blocks.
- Separate filenames from doc-strings.
- Remove break after return.
This commit is contained in:
Campbell Barton
2022-04-24 13:33:14 +10:00
parent a6504aa64b
commit bba757ef81
8 changed files with 12 additions and 6 deletions

View File

@@ -333,7 +333,7 @@ def main():
argv = sys.argv[2:]
blender_git_dir = find_blender_git_dir()
if blender_git_dir == None:
if blender_git_dir is None:
sys.stderr.write('Error: no blender git repository found from current working directory\n')
sys.exit(1)