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
path: root/doc
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2019-03-17 12:57:47 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-03-17 13:00:56 +0300
commitad9addbf460f6053b8037a09ec9752d653269561 (patch)
tree4278a9b8a8341f9e4bd2c1fa405a635b631a8f78 /doc
parenta19e78aa2dd1cc1265eae206ff817bd2815c968f (diff)
Cleanup: unused imports
Diffstat (limited to 'doc')
-rwxr-xr-xdoc/blender_file_format/BlendFileDnaExporter_25.py1
-rw-r--r--doc/python_api/examples/blf.py1
-rw-r--r--doc/python_api/examples/bpy.types.Object.py1
3 files changed, 0 insertions, 3 deletions
diff --git a/doc/blender_file_format/BlendFileDnaExporter_25.py b/doc/blender_file_format/BlendFileDnaExporter_25.py
index 54a3bd56eef..21260ea7ebc 100755
--- a/doc/blender_file_format/BlendFileDnaExporter_25.py
+++ b/doc/blender_file_format/BlendFileDnaExporter_25.py
@@ -57,7 +57,6 @@
import struct
import sys
-import getopt # command line arguments handling
from string import Template # strings completion
diff --git a/doc/python_api/examples/blf.py b/doc/python_api/examples/blf.py
index 5e1a2ef64a7..094fd9ddc0f 100644
--- a/doc/python_api/examples/blf.py
+++ b/doc/python_api/examples/blf.py
@@ -6,7 +6,6 @@ Example of using the blf module. For this module to work we
need to use the OpenGL wrapper :class:`~bgl` as well.
"""
# import stand alone modules
-import bgl
import blf
import bpy
diff --git a/doc/python_api/examples/bpy.types.Object.py b/doc/python_api/examples/bpy.types.Object.py
index 743322492b4..405b434381b 100644
--- a/doc/python_api/examples/bpy.types.Object.py
+++ b/doc/python_api/examples/bpy.types.Object.py
@@ -7,7 +7,6 @@ object, placing it into a view layer, selecting it and making it active.
"""
import bpy
-from mathutils import Matrix
view_layer = bpy.context.view_layer