From 67a4908bfc922439fa889521f1f1b24c09324b4a Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 20 Apr 2022 16:26:49 +1000 Subject: [PATCH] Cleanup: re-run autopep8 with E401 enabled Put imports on their own line which was almost always the case already. --- doc/blender_file_format/BlendFileDnaExporter_25.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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')