[Bf-blender-cvs] [67a4908bfc9] master: Cleanup: re-run autopep8 with E401 enabled

Campbell Barton noreply at git.blender.org
Wed Apr 20 08:27:49 CEST 2022


Commit: 67a4908bfc922439fa889521f1f1b24c09324b4a
Author: Campbell Barton
Date:   Wed Apr 20 16:26:49 2022 +1000
Branches: master
https://developer.blender.org/rB67a4908bfc922439fa889521f1f1b24c09324b4a

Cleanup: re-run autopep8 with E401 enabled

Put imports on their own line which was almost always the case already.

===================================================================

M	doc/blender_file_format/BlendFileDnaExporter_25.py

===================================================================

diff --git a/doc/blender_file_format/BlendFileDnaExporter_25.py b/doc/blender_file_format/BlendFileDnaExporter_25.py
index f85d496b9b5..91a313b789f 100755
--- a/doc/blender_file_format/BlendFileDnaExporter_25.py
+++ b/doc/blender_file_format/BlendFileDnaExporter_25.py
@@ -378,7 +378,8 @@ def usage():
 
 def main():
 
-    import os, os.path
+    import os
+    import os.path
 
     try:
         bpy = __import__('bpy')



More information about the Bf-blender-cvs mailing list