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 <ideasman42@gmail.com>2019-03-15 11:45:21 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-03-15 11:45:21 +0300
commit41b289be30021b8fc63031aba701065f1c40ed47 (patch)
tree66d4d132d33ac75c4aef5d748418420f7929a2b3 /release/scripts/modules/rna_info.py
parentf29b80ff79ec7c6a2532d0b0eb5841d00cc7af1b (diff)
Cleanup: unused imports
Diffstat (limited to 'release/scripts/modules/rna_info.py')
-rw-r--r--release/scripts/modules/rna_info.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/release/scripts/modules/rna_info.py b/release/scripts/modules/rna_info.py
index 4a2b1085143..6f51dcf3aeb 100644
--- a/release/scripts/modules/rna_info.py
+++ b/release/scripts/modules/rna_info.py
@@ -756,8 +756,7 @@ def BuildRNAInfo():
def main():
- import rna_info
- struct = rna_info.BuildRNAInfo()[0]
+ struct = BuildRNAInfo()[0]
data = []
for _struct_id, v in sorted(struct.items()):
struct_id_str = v.identifier # "".join(sid for sid in struct_id if struct_id)