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:
Diffstat (limited to 'power_sequencer/operators/__init__.py')
-rwxr-xr-xpower_sequencer/operators/__init__.py14
1 files changed, 10 insertions, 4 deletions
diff --git a/power_sequencer/operators/__init__.py b/power_sequencer/operators/__init__.py
index 3ab79520..a362b599 100755
--- a/power_sequencer/operators/__init__.py
+++ b/power_sequencer/operators/__init__.py
@@ -22,14 +22,18 @@ def get_operator_classes():
"""Returns the list of operators in the add-on"""
this_file = os.path.dirname(__file__)
module_files = [
- f for f in os.listdir(this_file) if f.endswith(".py") and not f.startswith("__init__")
+ f
+ for f in os.listdir(this_file)
+ if f.endswith(".py") and not f.startswith("__init__")
]
module_paths = ["." + os.path.splitext(f)[0] for f in module_files]
classes = []
print(__name__)
for path in module_paths:
- module = importlib.import_module(path, package="blender_power_sequencer.operators")
- operator_names = [entry for entry in dir(module) if entry.startswith("POWER_SEQUENCER_OT")]
+ module = importlib.import_module(path, package="power_sequencer.operators")
+ operator_names = [
+ entry for entry in dir(module) if entry.startswith("POWER_SEQUENCER_OT")
+ ]
classes.extend([getattr(module, name) for name in operator_names])
return classes
@@ -38,7 +42,9 @@ doc = {
"sequencer.refresh_all": {
"name": "Refresh All",
"description": "",
- "shortcuts": [({"type": "R", "value": "PRESS", "shift": True}, {}, "Refresh All")],
+ "shortcuts": [
+ ({"type": "R", "value": "PRESS", "shift": True}, {}, "Refresh All")
+ ],
"demo": "",
"keymap": "Sequencer",
}