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

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSybren A. Stüvel <sybren@stuvel.eu>2021-06-14 16:25:16 +0300
committerSybren A. Stüvel <sybren@stuvel.eu>2021-06-14 16:25:16 +0300
commit85bd7c2e65a00e7e0e914b82585f0139f70e2c8a (patch)
tree6071a9bccb483f9e5f82666b74641f189c9e6ce2
parentf11e0a84ea4186c5e0d94221e964cfde20d1c425 (diff)
Cleanup: pose library, correct file docstrings
No functional changes.
-rw-r--r--pose_library/functions.py2
-rw-r--r--pose_library/gui.py2
-rw-r--r--pose_library/macros.py2
-rw-r--r--pose_library/operators.py2
-rw-r--r--pose_library/pose_creation.py2
-rw-r--r--pose_library/pose_usage.py2
6 files changed, 6 insertions, 6 deletions
diff --git a/pose_library/functions.py b/pose_library/functions.py
index 9f0845b2..f4ce9219 100644
--- a/pose_library/functions.py
+++ b/pose_library/functions.py
@@ -17,7 +17,7 @@
# ##### END GPL LICENSE BLOCK #####
"""
-Pose Library mockup - functions.
+Pose Library - functions.
"""
import dataclasses
diff --git a/pose_library/gui.py b/pose_library/gui.py
index 7bdeac42..5d46418e 100644
--- a/pose_library/gui.py
+++ b/pose_library/gui.py
@@ -17,7 +17,7 @@
# ##### END GPL LICENSE BLOCK #####
"""
-Pose Library mockup GUI definition.
+Pose Library - GUI definition.
"""
import bpy
diff --git a/pose_library/macros.py b/pose_library/macros.py
index 6fd0d53e..baf6ca61 100644
--- a/pose_library/macros.py
+++ b/pose_library/macros.py
@@ -17,7 +17,7 @@
# ##### END GPL LICENSE BLOCK #####
"""
-Pose Library mockup - macros.
+Pose Library - macros.
"""
from pathlib import Path
diff --git a/pose_library/operators.py b/pose_library/operators.py
index 4802e5fa..599f6e86 100644
--- a/pose_library/operators.py
+++ b/pose_library/operators.py
@@ -17,7 +17,7 @@
# ##### END GPL LICENSE BLOCK #####
"""
-Pose Library mockup - operators.
+Pose Library - operators.
"""
from pathlib import Path
diff --git a/pose_library/pose_creation.py b/pose_library/pose_creation.py
index ce36622e..3119d34c 100644
--- a/pose_library/pose_creation.py
+++ b/pose_library/pose_creation.py
@@ -17,7 +17,7 @@
# ##### END GPL LICENSE BLOCK #####
"""
-Pose Library mockup - functions.
+Pose Library - creation functions.
"""
import dataclasses
diff --git a/pose_library/pose_usage.py b/pose_library/pose_usage.py
index 91631fe4..dc496d9c 100644
--- a/pose_library/pose_usage.py
+++ b/pose_library/pose_usage.py
@@ -17,7 +17,7 @@
# ##### END GPL LICENSE BLOCK #####
"""
-Pose Library mockup - functions.
+Pose Library - usage functions.
"""
from typing import Set