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:
authorNathan Lovato <nathan@gdquest.com>2020-05-15 03:31:18 +0300
committerNathan Lovato <nathan@gdquest.com>2020-05-15 03:31:18 +0300
commit8f11aecde7409633595b23f24b446943225aa319 (patch)
treed3548e7c670dd1514578ef9160ed35fdbac0c506 /power_sequencer/operators/snap.py
parent55b820186e64b5362f8c3e808f160cbff49621a3 (diff)
Power Sequencer: address docstring warnings
The previous commit passed tests without warnings or errors here, but LazyDodo sent me a log with warnings he was getting on his machine. This commit attempts to address them. Note: I'm not getting warnings when running unit tests here.
Diffstat (limited to 'power_sequencer/operators/snap.py')
-rw-r--r--power_sequencer/operators/snap.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/power_sequencer/operators/snap.py b/power_sequencer/operators/snap.py
index cee5ad56..42b029d1 100644
--- a/power_sequencer/operators/snap.py
+++ b/power_sequencer/operators/snap.py
@@ -24,7 +24,7 @@ class POWER_SEQUENCER_OT_snap(bpy.types.Operator):
"""
*Brief* Snaps selected strips to the time cursor ignoring locked sequences.
- Automatically selects sequences if there is no active selection.
+ Automatically selects sequences if there is no active selection
"""
doc = {
@@ -32,7 +32,11 @@ class POWER_SEQUENCER_OT_snap(bpy.types.Operator):
"demo": "",
"description": doc_description(__doc__),
"shortcuts": [
- ({"type": "S", "value": "PRESS", "shift": True}, {}, "Snap sequences to cursor")
+ (
+ {"type": "S", "value": "PRESS", "shift": True},
+ {},
+ "Snap sequences to cursor",
+ )
],
"keymap": "Sequencer",
}