Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <campbell@blender.org>2022-04-20 09:26:49 +0300
committerCampbell Barton <campbell@blender.org>2022-04-20 09:26:49 +0300
commit67a4908bfc922439fa889521f1f1b24c09324b4a (patch)
tree4359eafbc4ac124404ce7e8ac40a2591645704f9 /doc/blender_file_format
parent3adef61942a662892f7ffa86756fceb179fbed1d (diff)
Cleanup: re-run autopep8 with E401 enabled
Put imports on their own line which was almost always the case already.
Diffstat (limited to 'doc/blender_file_format')
-rwxr-xr-xdoc/blender_file_format/BlendFileDnaExporter_25.py3
1 files changed, 2 insertions, 1 deletions
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')