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 <campbell@blender.org>2022-04-19 08:05:55 +0300
committerCampbell Barton <campbell@blender.org>2022-04-19 08:07:04 +0300
commit58d86527ae283b94ba18f54b1fcef1cb8063c910 (patch)
tree7271a529d4df4ddbcc5172f423f3226e57658a60 /release/scripts/startup/bl_operators/wm.py
parent8c25889bb67db4c1d2f94bf85ca6d1c2a050fcfe (diff)
Cleanup: run autopep8 on release/scripts/startup/
Diffstat (limited to 'release/scripts/startup/bl_operators/wm.py')
-rw-r--r--release/scripts/startup/bl_operators/wm.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/release/scripts/startup/bl_operators/wm.py b/release/scripts/startup/bl_operators/wm.py
index d6e5604fde0..0f063da40fb 100644
--- a/release/scripts/startup/bl_operators/wm.py
+++ b/release/scripts/startup/bl_operators/wm.py
@@ -1317,7 +1317,7 @@ class WM_OT_properties_edit(Operator):
name="Array Length",
default=3,
min=1,
- max=32, # 32 is the maximum size for RNA array properties.
+ max=32, # 32 is the maximum size for RNA array properties.
)
# Integer properties.
@@ -1511,7 +1511,7 @@ class WM_OT_properties_edit(Operator):
elif self.property_type == 'STRING':
self.default_string = rna_data["default"]
- if self.property_type in { 'FLOAT_ARRAY', 'INT_ARRAY'}:
+ if self.property_type in {'FLOAT_ARRAY', 'INT_ARRAY'}:
self.array_length = len(item[name])
# The dictionary does not contain the description if it was empty.
@@ -2940,9 +2940,9 @@ class WM_MT_splash_quick_setup(Menu):
layout.label(text="Quick Setup")
- split = layout.split(factor=0.14) # Left margin.
+ split = layout.split(factor=0.14) # Left margin.
split.label()
- split = split.split(factor=0.73) # Content width.
+ split = split.split(factor=0.73) # Content width.
col = split.column()